1 | <?php |
||
15 | class Reader |
||
16 | { |
||
17 | /** |
||
18 | * Read options from a config file |
||
19 | * |
||
20 | * @param string $sConfigFile The full path to the config file |
||
21 | * |
||
22 | * @return array |
||
23 | */ |
||
24 | public function read($sConfigFile) |
||
51 | |||
52 | /** |
||
53 | * Read options from a config file and setup the library |
||
54 | * |
||
55 | * @param string $sConfigFile The full path to the config file |
||
56 | * @param string $sConfigSection The section of the config file to be loaded |
||
57 | * |
||
58 | * @return void |
||
59 | */ |
||
60 | public function load($sConfigFile, $sConfigSection = '') |
||
66 | } |
||
67 |