Exemplo n.º 1
0
 /**
  * Returns the value of this widget determined by the data and name.
  *
  * @return mixed
  */
 public function valueFromData($data, $files, $name)
 {
     if (!array_key_exists($name, $data)) {
         return false;
     }
     return parent::valueFromData($data, $files, $name);
 }