コード例 #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;
 }
コード例 #2
0
ファイル: FormController.php プロジェクト: rutkoski/amplify
 public function getTitle()
 {
     if (empty($this->title)) {
         $this->title = \Simplify\Inflector::titleize($this->getName());
     }
     return $this->title;
 }