我將這樣的設置導入到所有的Zend表單中,而無需爲每個表單重複代碼,這就是創建一個擴展Zend_Form的基本表單類,這反過來又擴展了我的所有其他表單。
在基礎窗體的構造函數中,我爲各種類型的元素設置了不同的裝飾器,或者爲我的應用程序定製了裝飾器,爲幫助器和驗證器等指定了前綴路徑。
關於此方法需要注意的重要一點是,如果您的基礎窗體爲__construct方法,則必須將parent::__construct()
作爲最後一行。原因是因爲Zend_Form::init()
方法被Zend_Form::__construct()
調用,並且之後沒有其他構造函數運行。
下面是一個例子:
<?php
class Application_Form_Base extends Zend_Form
{
// decorator spec for form elements like text, select etc.
public $elementDecorators = array(
'ViewHelper',
'Errors',
array('Description', array('tag' => 'p', 'class' => 'description', 'escape' => false)),
array('HtmlTag', array('class' => 'form-div')),
array('Label', array('class' => 'form-label', 'requiredSuffix' => '*'))
);
// decorator spec for checkboxes
public $checkboxDecorators = array(
'ViewHelper',
'Errors',
array('Label', array('class' => 'form-label', 'style' => 'display: inline', 'requiredSuffix' => '*', 'placement' => 'APPEND')),
array('HtmlTag', array('class' => 'form-div')),
array('Description', array('tag' => 'p', 'class' => 'description', 'escape' => false, 'placement' => 'APPEND')),
);
// decorator spec for submits and buttons
public $buttonDecorators = array(
'ViewHelper',
array('HtmlTag', array('tag' => 'div', 'class' => 'form-button'))
);
public function __construct()
{
// set the <form> decorators
$this->setDecorators(array(
'FormElements',
array('HtmlTag', array('tag' => 'div', 'class' => 'form')),
'Form'));
// set this as the default decorator for all elements added to the form
$this->setElementDecorators($this->elementDecorators, array('submit', 'button'), true);
// add prefix paths for decorators and validators
$this->addElementPrefixPath('My_Decorator', 'My/Decorator', 'decorator');
$this->addElementPrefixPath('My_Validator', 'My/Validator', 'validate');
parent::__construct();
// parent::__construct must be called last because it calls $form->init()
// and anything after it is not executed
}
}
謝謝,我最終結束了一個基類實現爲好。接下來是使用我使用自動加載器設置的名稱空間,讓它自動運行addElementPrefixPath調用。謝謝 – Ryan