本文整理汇总了PHP中JFormFieldGroupedList::getInput方法的典型用法代码示例。如果您正苦于以下问题:PHP JFormFieldGroupedList::getInput方法的具体用法?PHP JFormFieldGroupedList::getInput怎么用?PHP JFormFieldGroupedList::getInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JFormFieldGroupedList
的用法示例。
在下文中一共展示了JFormFieldGroupedList::getInput方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInput
protected function getInput()
{
$this->multiple = true;
if (!JFolder::exists(JPATH_ADMINISTRATOR . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_emerald')) {
return '<b>' . JText::_('Please install Emerald extension') . '</b>';
}
if ($this->multiple) {
$this->name .= '[]';
}
$this->getGroups();
if ($this->num > 10) {
$this->element['size'] = 10;
} else {
$this->element['size'] = $this->num;
}
return parent::getInput();
}
示例2: getInput
protected function getInput()
{
$register_type = $this->form->getValue('register_type', 'params', null);
$notice_display = $register_type == "custom" ? "none" : "block";
$input_display = $register_type == "custom" ? "block" : "none";
$html = '<div id="reglinknotice" style="display:' . $notice_display . '; clear:both;">' . JText::_("MOD_SCLOGIN_LOGIN_CUSTOM_REG_LINK_NOTICE") . '</div>';
return $html . '<div id="registrationlink" style="display:' . $input_display . '">' . parent::getInput() . '</div>';
}