コード例 #1
0
 /**
  * setTitle
  *
  * @param string $title
  *
  * @return  static
  */
 public function setTitle($title = null)
 {
     return parent::setTitle($title);
 }
コード例 #2
0
ファイル: GridView.php プロジェクト: ventoviro/phoenix
 /**
  * setTitle
  *
  * @param string $title
  *
  * @return  static
  */
 public function setTitle($title = null)
 {
     $title = $title ?: Translator::sprintf('phoenix.title.grid', Translator::translate($this->langPrefix . $this->getName() . '.title'));
     return parent::setTitle($title);
 }