Exemplo n.º 1
0
 public function getValue($key = null)
 {
     if (is_null($key)) {
         return parent::getValue();
     } else {
         if (isset($this->_value[$key])) {
             return $this->_value[$key];
         } else {
             return false;
         }
     }
 }