Я пытаюсь получить следующий макет с помощью декораторов: <form action="/index/login" method="post" id="login_form"> <div class="input_row"> <img src="/images/user_icon.png" class="login_icon" alt=""/> <label for="username" class="login_label">Username:</label> <input type="text" name="username" value="" id="username" class="login_input" /> </div> <div class="input_row"> <img src="/images/password_icon.png" class="login_icon" alt=""/> <label for="password" class="login_label">Password:</label> <input type="password" name="password" value="" id="password" class="login_input" /> </div> <div class="input_row"> <input type="submit" name="login_submit" value="Login" class="login_submit" /> </div> […]
То, что я пытаюсь сделать, это показать метки меток после полей ввода флажка (справа от них). Я использую эти декораторы сейчас: private $checkboxDecorators = array( Label, array(array('data' => 'HtmlTag'), array('tag' => 'div', 'class' => 'checkbox')), 'ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'li')), ); Я попытался переключить декораторы Label и ViewHelper, но ничего не сделал. Какие-либо […]