📄 recherche.php
字号:
<?phpclass Form_Recherche extends Zend_Form{ public function __construct($options = null) { parent::__construct($options); $this->setName('recherche'); $search = new Zend_Form_Element_Text('search',array('size' => 50)); $search->setLabel('Rechercher'); $submit = new Zend_Form_Element_Submit('submit'); $submit->setLabel('Rechercher'); $this->addElements(array($search,$submit)); $this->clearDecorators(); $this->addDecorator('FormElements') ->addDecorator('HtmlTag', array('tag' => '<fieldset>')) ->addDecorator('Form'); $this->setElementDecorators(array( array('ViewHelper'), array('Errors',array('class'=>'error')), array('Label', array('separator'=>' ')), )); // buttons do not need labels $submit->setDecorators(array( array('ViewHelper'), )); }}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -