Exemplo n.º 1
0
 public function render($attributes = array())
 {
     // <nav aria-label="breadcrumb" role="navigation">
     $nav = new Element('nav', $attributes);
     $nav->setAttributeValue('aria-label', 'Breadcrumbs');
     $nav->setAttributeValue('role', 'navigation');
     $nav->addChild(parent::render());
     return $nav->render();
 }