| 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) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Read options from a config file and setup the library |
||
| 49 | * |
||
| 50 | * @param string $sConfigFile The full path to the config file |
||
| 51 | * @param string $sConfigSection The section of the config file to be loaded |
||
| 52 | * |
||
| 53 | * @return void |
||
| 54 | */ |
||
| 55 | public function load($sConfigFile, $sConfigSection = '') |
||
| 61 | } |
||
| 62 |