本文整理汇总了PHP中Zend_Form_Element::setMultiOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Form_Element::setMultiOptions方法的具体用法?PHP Zend_Form_Element::setMultiOptions怎么用?PHP Zend_Form_Element::setMultiOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Form_Element
的用法示例。
在下文中一共展示了Zend_Form_Element::setMultiOptions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepareConfigElement
/**
* Add multioptions for video quality
* @param string $section
* @param string $namespace
* @param unknown_type $key
* @param Zend_Form_Element $element
* @param Zend_Form $form
* @param Zend_Controller_Action $controller
*/
public function prepareConfigElement($section, $namespace, $key, Zend_Form_Element $element, Zend_Form $form, Zend_Controller_Action $controller)
{
// nothing to do if this isn't the right section
if ($namespace != $this->getId()) {
return;
}
switch ($key) {
// add multioptions for veetle server ip selection
case 'plugins_hulu_video_quality':
if ($element instanceof Zend_Form_Element_Select) {
$element->setMultiOptions(array('480_vp6' => '16x9 30fps Medium (480_vp6)', '400_h264' => '16x9 30fps H264 400K (400_h264)', '650_h264' => '16x9 30fps H264 650K (650_h264)', '1000_h264' => '16x9 30fps H264 Medium (1000_h264)'));
}
break;
case 'plugins_hulu_preferred_cdn':
if ($element instanceof Zend_Form_Element_Select) {
$element->setMultiOptions(array('limelight' => 'Limelight', 'level3' => 'Level3', 'akamai' => 'Akamai'));
}
break;
case 'plugins_hulu_selection_priority':
if ($element instanceof Zend_Form_Element_Select) {
$element->setMultiOptions(array('cdn' => X_Env::_('p_hulu_conf_value_priority_cdn'), 'quality' => X_Env::_('p_hulu_conf_value_priority_quality')));
}
break;
}
}