Ejemplo n.º 1
0
 /**
  * @return Standard8_TitleNav
  */
 public function setTitle($title)
 {
     if (strlen($title) > 0) {
         $this->_h1->innerHTML($title);
     }
     return $this;
 }
Ejemplo n.º 2
0
 /**
  * @return Wax_Document_Head
  */
 public function setTitle($title, $glue = null)
 {
     if (is_array($title)) {
         $title = implode($glue, $title);
     }
     if (is_string($title)) {
         $this->_title->innerHTML($title);
     }
     return $this;
 }