Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 1 | ################ |
| 2 | Creating Drivers |
| 3 | ################ |
| 4 | |
| 5 | Driver Directory and File Structure |
| 6 | =================================== |
| 7 | |
| 8 | Sample driver directory and file structure layout: |
| 9 | |
| 10 | - /application/libraries/Driver_name |
| 11 | |
| 12 | - Driver_name.php |
| 13 | - drivers |
| 14 | |
| 15 | - Driver_name_subclass_1.php |
| 16 | - Driver_name_subclass_2.php |
| 17 | - Driver_name_subclass_3.php |
| 18 | |
Andrey Andreev | 16a704c | 2012-11-09 17:25:00 +0200 | [diff] [blame] | 19 | .. note:: In order to maintain compatibility on case-sensitive |
| 20 | file systems, the Driver_name directory must be |
| 21 | named in the format returned by ``ucfirst()``. |