Example #1
0
 /**
  * Return field save data
  * 
  * @return array|bool
  */
 public function getSaveData()
 {
     if ($this->_notSave) {
         return false;
     }
     if ($this->_notEdit && $this->_form->getId()) {
         return false;
     }
     return ['key' => $this->getName(), 'value' => $this->getValue()];
 }