| 1 | <?php |
||
| 7 | abstract class Loader { |
||
| 8 | |||
| 9 | protected $dir_name = '', $items = []; |
||
| 10 | |||
| 11 | # Get item |
||
| 12 | |||
| 13 | protected function getItem(string $name) { |
||
| 27 | |||
| 28 | # Return directory name |
||
| 29 | |||
| 30 | public function dirName() { |
||
| 34 | |||
| 35 | # Return items |
||
| 36 | |||
| 37 | public function items(bool $plain = false) { |
||
| 41 | |||
| 42 | # Check if item exists |
||
| 43 | |||
| 44 | public function exists(string $name) { |
||
| 48 | } |
||
| 49 | } |
||
| 50 |