当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Navigation_Page::get方法代码示例

本文整理汇总了PHP中Zend_Navigation_Page::get方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Navigation_Page::get方法的具体用法?PHP Zend_Navigation_Page::get怎么用?PHP Zend_Navigation_Page::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Navigation_Page的用法示例。


在下文中一共展示了Zend_Navigation_Page::get方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getLiClass

 function getLiClass(Zend_Navigation_Page $subPage, $isActive)
 {
     if ($isActive && $this->_activeClass) {
         return ' class="' . $this->_activeClass . '"';
     }
     if ($subPage->get('disabled') && $this->_disabledClass) {
         return ' class="' . $this->_disabledClass . '"';
     }
     if ($this->_normalClass) {
         return ' class="' . $this->_normalClass . '"';
     }
 }
开发者ID:subashemphasize,项目名称:test_site,代码行数:12,代码来源:Menu.php

示例2: getLiClass

 function getLiClass(Zend_Navigation_Page $subPage, $isActive)
 {
     $class = '';
     if ($isActive && $this->_activeClass) {
         $class .= $this->_activeClass . ' ';
     } elseif ($subPage->get('disabled') && $this->_disabledClass) {
         $class .= $this->_disabledClass . ' ';
     } elseif ($this->_normalClass) {
         $class .= $this->_normalClass . ' ';
     }
     if ($subPage->hasChildren()) {
         $class .= $this->_hasChildrenClass . ' ';
     }
     if ($class = trim($class)) {
         return " class=\"{$class}\"";
     }
 }
开发者ID:grlf,项目名称:eyedock,代码行数:17,代码来源:Menu.php

示例3: _acceptAcl

 /**
  * Determines whether a page should be accepted by ACL when iterating
  *
  * Rules:
  * - If helper has no ACL, page is accepted
  * - If page has a resource or privilege defined, page is accepted
  *   if the ACL allows access to it using the helper's role
  * - If page has no resource or privilege, page is accepted
  *
  * @param  Zend_Navigation_Page $page  page to check
  * @return bool                        whether page is accepted by ACL
  */
 protected function _acceptAcl(Zend_Navigation_Page $page)
 {
     if (true == $page->get('invalid')) {
         return false;
     }
     return parent::_acceptAcl($page);
 }
开发者ID:starflash,项目名称:ZtChart-ZF1-Example,代码行数:19,代码来源:MvcMenu.php

示例4: htmlify

 public function htmlify(Zend_Navigation_Page $page)
 {
     // get label and title for translating
     $label = $page->getLabel();
     $title = $page->getTitle();
     // translate label and title?
     if ($this->getUseTranslator() && ($t = $this->getTranslator())) {
         if (is_string($label) && !empty($label)) {
             $label = $t->translate($label);
         }
         if (is_string($title) && !empty($title)) {
             $title = $t->translate($title);
         }
     }
     // get attribs for element
     $attribs = array('id' => $page->getId(), 'title' => $title);
     if (false === $this->getAddPageClassToLi()) {
         $attribs['class'] = $page->getClass();
     }
     // does page have a href?
     if ($href = $page->getHref()) {
         $element = 'a';
         $attribs['href'] = $href;
         $attribs['target'] = $page->getTarget();
         $attribs['accesskey'] = $page->getAccesskey();
     } else {
         $element = 'span';
     }
     // Add custom HTML attributes
     $attribs = array_merge($attribs, $page->getCustomHtmlAttribs());
     if ($page->get('icon') != null) {
         return '<' . $element . $this->_htmlAttribs($attribs) . '>' . '<i class="fa ' . $page->get('icon') . '"> ' . '</i>' . $this->view->escape($label) . '</' . $element . '>';
     } else {
         return '<' . $element . $this->_htmlAttribs($attribs) . '>' . $this->view->escape($label) . '</' . $element . '>';
     }
 }
开发者ID:dafik,项目名称:dfi,代码行数:36,代码来源:Menu.php

示例5: toXtype

 public function toXtype(Zend_Navigation_Page $page)
 {
     // get label and title for translating
     $label = $page->getLabel();
     $title = $page->getTitle();
     // translate label and title?
     if ($this->getUseTranslator() && ($t = $this->getTranslator())) {
         if (is_string($label) && !empty($label)) {
             $label = $t->translate($label);
         }
         if (is_string($title) && !empty($title)) {
             $title = $t->translate($title);
         }
     }
     // get attribs for element
     $attribs = array('id' => $page->getId(), 'text' => $label, 'iconCls' => $page->get('iconClass'), 'cls' => $page->getClass());
     // does page have a href?
     if ($href = $page->getHref()) {
         $attribs['href'] = $href;
         $attribs['hrefTarget'] = $page->getTarget();
     }
     foreach ($attribs as $key => &$attr) {
         if (empty($attr)) {
             unset($attribs[$key]);
         }
     }
     return $attribs;
 }
开发者ID:roed,项目名称:zend-mvc-extend,代码行数:28,代码来源:Extjs.php


注:本文中的Zend_Navigation_Page::get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。