コード例 #1
0
ファイル: Form.php プロジェクト: rutkoski/simplify-form
 /**
  *
  * @return string
  */
 public function getTitle()
 {
     if (empty($this->title)) {
         $this->title = Inflector::titleize(Inflector::pluralize($this->getName()));
     }
     return $this->title;
 }