public function get($name)
 {
     if (is_array($this->meta_cache) && array_key_exists($name, $this->meta_cache)) {
         return $this->meta_cache[$name];
     } elseif (array_key_exists($name, $this->meta_defaults)) {
         return $this->meta_defaults[$name];
     }
     return parent::get($name);
 }