Exemplo n.º 1
0
 /**
  * Retrieve Node Replace pairs
  *
  * @param Enterprise_Cms_Model_Hierarchy_Node $node
  * @return array
  */
 protected function _getNodeReplacePairs($node)
 {
     return array('__ID__' => $node->getId(), '__LABEL__' => $node->getLabel(), '__HREF__' => $node->getUrl());
 }
Exemplo n.º 2
0
 /**
  * Retrieve Node URL
  *
  * @return string
  */
 public function getHref()
 {
     return $this->_node->getUrl();
 }