本文整理汇总了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 . '"';
}
}
示例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}\"";
}
}
示例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);
}
示例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 . '>';
}
}
示例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;
}