示例#1
0
 /**
  * @return Standard8_TitleNav
  */
 public function setTitle($title)
 {
     if (strlen($title) > 0) {
         $this->_h1->innerHTML($title);
     }
     return $this;
 }
示例#2
0
文件: Head.php 项目: joksnet/php-old
 /**
  * @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;
 }