1 <?php
defined('SYSPATH') or die('No direct script access.');
4 * Interface for config readers
7 * @category Configuration
9 * @copyright (c) 2008-2010 Kohana Team
10 * @license http://kohanaframework.org/license
12 Interface Kohana_Config_Reader
extends Kohana_Config_Source
16 * Tries to load the specificed configuration group
18 * Returns FALSE if group does not exist or an array if it does
20 * @param string $group Configuration group
21 * @return boolean|array
23 public function load($group);