예제 #1
0
 /**
  * put your comment there...
  * 
  * @param mixed $property
  */
 public function __get($property)
 {
     $value = null;
     switch ($property) {
         // PostTypes always should be array.
         case 'postTypes':
             $value = parent::__get($property);
             $value = is_array($value) ? $value : array();
             break;
     }
     return $value;
 }
예제 #2
0
 /**
  * put your comment there...
  * 
  */
 public function __construct()
 {
     parent::__construct(get_class($this));
     // Load metabox settins.
     $this->load();
 }