本文整理汇总了PHP中Zend\Form\Form::getElement方法的典型用法代码示例。如果您正苦于以下问题:PHP Form::getElement方法的具体用法?PHP Form::getElement怎么用?PHP Form::getElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend\Form\Form
的用法示例。
在下文中一共展示了Form::getElement方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testCanPopulateCheckboxOptionsFromPostedData
/**
* @group ZF-2828
*/
public function testCanPopulateCheckboxOptionsFromPostedData()
{
$form = new Form(array('elements' => array('100_1' => array('MultiCheckbox', array('multiOptions' => array('100_1_1' => 'Agriculture', '100_1_2' => 'Automotive', '100_1_12' => 'Chemical', '100_1_13' => 'Communications'), 'required' => true)))));
$data = array('100_1' => array('100_1_1', '100_1_2', '100_1_12', '100_1_13'));
$form->populate($data);
$html = $form->render($this->getView());
foreach ($form->getElement('100_1')->getMultiOptions() as $key => $value) {
if (!preg_match('#(<input[^>]*' . $key . '[^>]*>)#', $html, $m)) {
$this->fail('Missing input for a given multi option: ' . $html);
}
$this->assertContains('checked="checked"', $m[1]);
}
}
示例2: testCustomLabelDecorator
/**
* @group ZF-9682
*/
public function testCustomLabelDecorator()
{
$form = new Form();
$form->addElementPrefixPath('My\\Decorator', __DIR__ . '/../TestAsset/decorators/', 'decorator');
$form->addElement($this->element);
$element = $form->getElement('foo');
$this->assertInstanceOf('My\\Decorator\\Label', $element->getDecorator('Label'));
}