예제 #1
0
파일: FormField.php 프로젝트: mia3/expose
 public function __construct($name, $options = NULL)
 {
     $this->name = $name;
     $this->id = 'form-field-' . StringFormatter::pathToFormId($name);
     $this->label = StringFormatter::camelCaseToSentence($name);
     // todo: use/set options
 }
예제 #2
0
 /**
  * @return string
  */
 public function getFormName()
 {
     return StringFormatter::pathToFormName($this->getPath());
 }