Ejemplo n.º 1
0
Archivo: Links.php Proyecto: stunti/zf2
 /**
  * Renders the given $page as a link element, with $attrib = $relation
  *
  * @param  \Zend\Navigation\Page\Page $page      the page to render the link for
  * @param  string               $attrib    the attribute to use for $type,
  *                                         either 'rel' or 'rev'
  * @param  string               $relation  relation type, muse be one of;
  *                                         alternate, appendix, bookmark,
  *                                         chapter, contents, copyright,
  *                                         glossary, help, home, index, next,
  *                                         prev, section, start, stylesheet,
  *                                         subsection
  * @return string                          rendered link element
  * @throws \Zend\View\Exception             if $attrib is invalid
  */
 public function renderLink(Page\Page $page, $attrib, $relation)
 {
     if (!in_array($attrib, array('rel', 'rev'))) {
         $e = new View\Exception(sprintf('Invalid relation attribute "%s", must be "rel" or "rev"', $attrib));
         $e->setView($this->view);
         throw $e;
     }
     if (!($href = $page->getHref())) {
         return '';
     }
     // TODO: add more attribs
     // http://www.w3.org/TR/html401/struct/links.html#h-12.2
     $attribs = array($attrib => $relation, 'href' => $href, 'title' => $page->getLabel());
     return '<link' . $this->_htmlAttribs($attribs) . $this->getClosingBracket();
 }
Ejemplo n.º 2
0
 /**
  * Returns an HTML string containing an 'a' element for the given page
  *
  * @param  \Zend\Navigation\Page\Page $page  page to generate HTML for
  * @return string                      HTML string for the given page
  */
 public function htmlify(Page\Page $page)
 {
     // get label and title for translating
     $label = $page->getLabel();
     $title = $page->getTitle();
     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 anchor element
     $attribs = array('id' => $page->getId(), 'title' => $title, 'class' => $page->getClass(), 'href' => $page->getHref(), 'target' => $page->getTarget());
     return '<a' . $this->_htmlAttribs($attribs) . '>' . $this->view->escape($label) . '</a>';
 }
Ejemplo n.º 3
0
Archivo: Menu.php Proyecto: stunti/zf2
 /**
  * Returns an HTML string containing an 'a' element for the given page if
  * the page's href is not empty, and a 'span' element if it is empty
  *
  * Overrides {@link Zend_View_Helper_Navigation_Abstract::htmlify()}.
  *
  * @param  \Zend\Navigation\Page\Page $page  page to generate HTML for
  * @return string                      HTML string for the given page
  */
 public function htmlify(Navigation\Page\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, 'class' => $page->getClass());
     // does page have a href?
     if ($href = $page->getHref()) {
         $element = 'a';
         $attribs['href'] = $href;
         $attribs['target'] = $page->getTarget();
     } else {
         $element = 'span';
     }
     return '<' . $element . $this->_htmlAttribs($attribs) . '>' . $this->view->escape($label) . '</' . $element . '>';
 }