Exemplo n.º 1
0
 /**
  * Initializes values of form elements from configuration.
  */
 public function populateFromModel($config)
 {
     foreach ($this->_options as $name => $option) {
         $value = Application_Configuration::getValueFromConfig($config, $option->getKey());
         $this->getElement($name)->setValue($value);
     }
 }