Exemplo n.º 1
0
 /**
  * Function to check whether this field editable or not
  * return <boolen> true/false
  */
 public function isEditable()
 {
     $isEditable = $this->get('editable');
     if (!$isEditable) {
         $this->set('editable', parent::isEditable());
     }
     return $this->get('editable');
 }