當前位置: 首頁>>代碼示例>>PHP>>正文


PHP JFormFieldList::getLabel方法代碼示例

本文整理匯總了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();
 }
開發者ID:educakanchay,項目名稱:educa,代碼行數:5,代碼來源:sjthumbnailmode.php

示例2: getLabel

 public function getLabel()
 {
     if (!self::hide_it()) {
         return parent::getLabel();
     }
     return '';
 }
開發者ID:esorone,項目名稱:efcpw,代碼行數:7,代碼來源:listwrapper.php

示例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();
 }
開發者ID:q0821,項目名稱:esportshop,代碼行數:7,代碼來源:socialprofileregistration.php

示例4: getLabel

 protected function getLabel()
 {
     if (!JevJoomlaVersion::isCompatible("3.4")) {
         return "";
     }
     return parent::getLabel();
 }
開發者ID:poorgeek,項目名稱:JEvents,代碼行數:7,代碼來源:jevcustomlayout.php

示例5: getLabel

 public function getLabel()
 {
     if (SYWK2::exists()) {
         return parent::getLabel();
     }
     return '<div style="clear: both;"></div>';
 }
開發者ID:esorone,項目名稱:efcpw,代碼行數:7,代碼來源:k2tags.php

示例6: getLabel

 protected function getLabel()
 {
     $folder = JPATH_ROOT . '/components/com_tags';
     if (JFolder::exists($folder)) {
         return parent::getLabel();
     }
     return '<div style="clear: both;"></div>';
 }
開發者ID:ashanrupasinghe,項目名稱:slbcv1,代碼行數:8,代碼來源:tags.php

示例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;
 }
開發者ID:pabloarias,項目名稱:JoomGallery,代碼行數:18,代碼來源:cblist.php

示例8: getLabel

 public function getLabel()
 {
     // code that returns HTML that will be shown as the label
     return parent::getLabel();
 }
開發者ID:acculitx,項目名稱:fleetmatrixsite,代碼行數:5,代碼來源:parententity.php


注:本文中的JFormFieldList::getLabel方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。