data[$name] = $conf; } /** * Get the specific parameter from the specified file * * @param string $file * @param string $key * @return mixed */ public function get($file, $key=NULL) { if (is_null($key)) { return $this->data[$file]; } return $this->data[$file][$key]; } } // End of Core/Config.php