Exemplo n.º 1
0
 /**
  * (non-PHPdoc)
  * @see CComponent::__set()
  */
 public function __set($key, $value)
 {
     if (in_array($key, $this->getEditableProperties())) {
         $this->_data[$key] = $value;
     } else {
         parent::__set($key, $value);
     }
 }