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


PHP ItemInterface::setLabel方法代碼示例

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


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

示例1: buildItem

 /**
  * Configures the newly created item with the passed options
  *
  * @param ItemInterface $item
  * @param array         $options
  */
 public function buildItem(ItemInterface $item, array $options)
 {
     if (!empty($options['path'])) {
         $item->setUri(site_url($options['path']));
     }
     if (!empty($options['icon_class'])) {
         $item->setLabel('<i class="' . $options['icon_class'] . '"></i> ' . $item->getLabel());
         $item->setExtra('safe_label', true);
     }
     $this->buildExtras($item, $options);
 }
開發者ID:andrewkrug,項目名稱:repucaution,代碼行數:17,代碼來源:CoreExtension.php

示例2: buildItem

 /**
  * Build an item based on options
  * @param ItemInterface $item
  * @param array         $options
  */
 public function buildItem(ItemInterface $item, array $options)
 {
     if ($options['navbar']) {
         $item->setChildrenAttribute('class', 'nav navbar-nav');
     }
     if ($options['pills']) {
         $item->setChildrenAttribute('class', 'nav nav-pills');
     }
     if ($options['stacked']) {
         $class = $item->getChildrenAttribute('class');
         $item->setChildrenAttribute('class', $class . ' nav-stacked');
     }
     if ($options['dropdown-header']) {
         $item->setAttribute('role', 'presentation')->setAttribute('class', 'dropdown-header')->setUri(null);
     }
     if ($options['list-group']) {
         //echo "BLUBBB";
         $item->setChildrenAttribute('class', 'list-group');
         $item->setAttribute('class', 'list-group-item');
     }
     //var_dump($item->getLabel(), $item->getChildrenAttributes());
     if ($options['list-group-item']) {
         $item->setAttribute('class', 'list-group-item');
     }
     if ($options['dropdown']) {
         $item->setUri('#')->setAttribute('class', 'dropdown')->setLinkAttribute('class', 'dropdown-toggle')->setLinkAttribute('data-toggle', 'dropdown')->setChildrenAttribute('class', 'dropdown-menu')->setChildrenAttribute('role', 'menu');
         if ($options['caret']) {
             $item->setExtra('caret', 'true');
         }
     }
     if ($options['divider']) {
         $item->setLabel('')->setUri(null)->setAttribute('role', 'presentation')->setAttribute('class', 'divider');
     }
     if ($options['pull-right']) {
         $class = $item->getChildrenAttribute('class', '');
         $item->setChildrenAttribute('class', $class . ' pull-right');
     }
     if ($options['icon']) {
         $item->setExtra('icon', $options['icon']);
     }
 }
開發者ID:saberyounis,項目名稱:Sonata-Project,代碼行數:46,代碼來源:MenuExtension.php

示例3: decorate

 public function decorate(KnpMenuItem $knpMenuItem, AdminMenuItem $adminMenuItem)
 {
     if ($adminMenuItem->getLabel()) {
         $knpMenuItem->setLabel($adminMenuItem->getLabel());
     }
 }
開發者ID:kbedn,項目名稱:admin-bundle,代碼行數:6,代碼來源:ItemLabelDecorator.php


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