__get() 공개 메소드

Method to get certain otherwise inaccessible properties from the form field object.
부터: 2.0
public __get ( string $name ) : mixed
$name string The property name for which to the the value.
리턴 mixed The property value or null.
예제 #1
0
파일: Button.php 프로젝트: Joal01/fof
 /**
  * Method to get certain otherwise inaccessible properties from the form field object.
  *
  * @param   string  $name  The property name for which to the the value.
  *
  * @return  mixed  The property value or null.
  *
  * @since   2.0
  */
 public function __get($name)
 {
     switch ($name) {
         case 'static':
             if (empty($this->static)) {
                 $this->static = $this->getStatic();
             }
             return $this->static;
             break;
         case 'repeatable':
             if (empty($this->repeatable)) {
                 $this->repeatable = $this->getRepeatable();
             }
             return $this->repeatable;
             break;
         default:
             return parent::__get($name);
     }
 }