本文整理匯總了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();
}