本文整理汇总了PHP中Zend\Form\Element::getOption方法的典型用法代码示例。如果您正苦于以下问题:PHP Element::getOption方法的具体用法?PHP Element::getOption怎么用?PHP Element::getOption使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend\Form\Element
的用法示例。
在下文中一共展示了Element::getOption方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __invoke
public function __invoke(Element $element)
{
$description = $element->getOption('description');
if (!$description) {
return '';
}
return sprintf('<div class="zui-description">%s</div>', $this->getView()->translate($description));
}
示例2: __invoke
/**
* Outputs message depending on flag
*
* @return string
*/
public function __invoke(Element $element)
{
$element->setLabelAttributes(array('class' => 'control-label'));
$element->setAttribute('data-placement', 'bottom')->setAttribute('data-content', $element->getOption('description'));
if (!$element->getLabel()) {
$element->setLabel('öö');
}
$output = '<div class="control-group">';
$output .= $this->getView()->formLabel($element);
$output .= '<div class="controls">';
$output .= $this->getView()->formElement($element);
if ($element->getOption('description')) {
$output .= '<div class="description">' . $element->getOption('description') . '</div>';
}
if ($element->getMessages()) {
$output .= '<div class="alert alert-error">' . $this->getView()->formElementErrors($element) . '</div>';
}
$output .= '</div>';
$output .= '</div>';
return $output;
}
示例3: testGetOption
public function testGetOption()
{
$element = new Element('foo');
$this->assertNull($element->getOption('foo'));
}
示例4: testCanRetrieveSpecificOption
public function testCanRetrieveSpecificOption()
{
$element = new Element('foo');
$element->setOptions(array('custom' => 'option'));
$option = $element->getOption('custom');
$this->assertEquals('option', $option);
}
示例5: getElement
/**
* @param Zend\Form\Element $element
*
* @return string
*/
protected function getElement(Element $element)
{
$element->setLabelAttributes(array('class' => 'control-label col-sm-2'));
$element->setAttribute('data-placement', 'bottom')->setAttribute('class', 'form-control')->setAttribute('data-content', $element->getOption('description'))->setAttribute('data-trigger', 'focus');
if (!$element->getLabel()) {
$element->setLabel('öö');
}
$output = sprintf('<div class="form-group%1$s">', $element->getMEssages() && !$element instanceof \Zend\Form\Element\Collection ? ' has-error' : '');
$output .= $this->getView()->formLabel($element);
$output .= '<div class="col-sm-10">';
if ($element->getMessages() && !$element instanceof \Zend\Form\Element\Collection) {
$output .= sprintf('<div class="input-group"><span data-toggle="tooltip" data-placement="bottom" class="input-group-addon" data-html="true" title="%1$s"><i class="fa-warning fa"></i></span>', $this->getView()->formElementErrors($element));
}
if ($element instanceof \Zend\Form\Element\Collection) {
$output .= $this->getView()->formCollection($element);
} else {
$output .= $this->getView()->formElement($element);
}
if ($element->getMessages()) {
$output .= '</div>';
}
$output .= '</div>';
$output .= '</div>';
return $output;
}