本文整理汇总了PHP中JFormFieldList::getLabel方法的典型用法代码示例。如果您正苦于以下问题:PHP JFormFieldList::getLabel方法的具体用法?PHP JFormFieldList::getLabel怎么用?PHP JFormFieldList::getLabel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JFormFieldList
的用法示例。
在下文中一共展示了JFormFieldList::getLabel方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getLabel
public function getLabel()
{
$this->description = $this->_image_thumbnail_mode();
return parent::getLabel();
}
示例2: getLabel
public function getLabel()
{
if (!self::hide_it()) {
return parent::getLabel();
}
return '';
}
示例3: getLabel
protected function getLabel()
{
if (count($this->getOptions()) == 0) {
return "<label>There are no Profile Plugins enabled which support Alternative Registration</label>";
}
return parent::getLabel();
}
示例4: getLabel
protected function getLabel()
{
if (!JevJoomlaVersion::isCompatible("3.4")) {
return "";
}
return parent::getLabel();
}
示例5: getLabel
public function getLabel()
{
if (SYWK2::exists()) {
return parent::getLabel();
}
return '<div style="clear: both;"></div>';
}
示例6: getLabel
protected function getLabel()
{
$folder = JPATH_ROOT . '/components/com_tags';
if (JFolder::exists($folder)) {
return parent::getLabel();
}
return '<div style="clear: both;"></div>';
}
示例7: getLabel
/**
* Method to get the field label markup
*
* @return string The field label markup
* @since 2.0
*/
protected function getLabel()
{
$label = '';
$cbname = $this->element['cbname'] ? $this->element['cbname'] : 'change[]';
$cbvalue = $this->element['cbvalue'] ? $this->element['cbvalue'] : $this->name;
$cbid = str_replace(array('[', ']'), array('', ''), $cbname . $cbvalue);
$cbhtml = '<input id="' . $cbid . '" type="checkbox" name="' . $cbname . '" value="' . $cbvalue . '" />';
$label = parent::getLabel();
$insertpos = strpos($label, '>');
$label = substr_replace($label, $cbhtml, $insertpos + 1, 0);
return $label;
}
示例8: getLabel
public function getLabel()
{
// code that returns HTML that will be shown as the label
return parent::getLabel();
}