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


PHP Menu::renderItem方法代碼示例

本文整理匯總了PHP中yii\widgets\Menu::renderItem方法的典型用法代碼示例。如果您正苦於以下問題:PHP Menu::renderItem方法的具體用法?PHP Menu::renderItem怎麽用?PHP Menu::renderItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在yii\widgets\Menu的用法示例。


在下文中一共展示了Menu::renderItem方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: renderItem

 /**
  * @inheritdoc
  */
 protected function renderItem($item)
 {
     $renderedItem = parent::renderItem($item);
     if (isset($item['badge'])) {
         $badgeOptions = ArrayHelper::getValue($item, 'badgeOptions', []);
         Html::addCssClass($badgeOptions, 'label pull-right');
     } else {
         $badgeOptions = null;
     }
     return strtr($renderedItem, ['{icon}' => isset($item['icon']) ? new Icon($item['icon'], ArrayHelper::getValue($item, 'iconOptions', [])) : '', '{badge}' => (isset($item['badge']) ? Html::tag('small', $item['badge'], $badgeOptions) : '') . (isset($item['items']) && count($item['items']) > 0 ? new Icon('fa fa-angle-left pull-right') : '')]);
 }
開發者ID:yiister,項目名稱:yii2-adminlte,代碼行數:14,代碼來源:Menu.php

示例2: renderItem

 /**
  * Renders the content of a menu item.
  * Note that the container and the sub-menus are not rendered here.
  * @param array $item the menu item to be rendered. Please refer to [[items]] to see what data might be in the item.
  * @return string the rendering result
  */
 protected function renderItem($item)
 {
     if ($this->showIcon && isset($item['url'])) {
         if (!strpos($item['label'], '</i>')) {
             $item['label'] = strtr($this->iconTemplate, ['{icon}' => isset($item['icon']) ? $item['icon'] : $this->defaultIcon, '{label}' => $item['label']]);
         }
     }
     if (isset($item['items'])) {
         $item['label'] .= $this->showCountSubmenu ? strtr($this->countSubmenuTemplate, ['{count}' => count($item['items'])]) : '<i class="fa fa-angle-left pull-right"></i>';
     }
     return parent::renderItem($item);
 }
開發者ID:kongoon,項目名稱:yii2-adminlte-asset,代碼行數:18,代碼來源:Menu.php

示例3: renderItem

 /**
  * Renders the content of a menu item.
  * Note that the container and the sub-menus are not rendered here.
  * @param array $item the menu item to be rendered. Please refer to [[items]] to see what data might be in the item.
  * @return string the rendering result
  */
 protected function renderItem($item)
 {
     if (isset($item['url'])) {
         if ($this->useSprites) {
             $spriteUrl = $this->spriteUrl;
             $item['template'] = "<a href=\"{url}\" style=\"background: no-repeat 0 {$this->itemOffset}px url({$spriteUrl});\">{label}</a>";
             $this->itemOffset -= 16;
         } else {
             $components = parse_url($item['url']);
             $iconUrl = $this->iconizerBaseUrl . $components['host'];
             $item['template'] = "<a href=\"{url}\" style=\"background: no-repeat url({$iconUrl})\">{label}</a>";
         }
     }
     return parent::renderItem($item);
 }
開發者ID:samdark,項目名稱:yii2-iconized-menu-widget,代碼行數:21,代碼來源:Menu.php


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