| 1 | <?php |
||
| 8 | class ColumnManager |
||
| 9 | { |
||
| 10 | protected $app; |
||
| 11 | |||
| 12 | protected $initialDrivers = [ |
||
| 13 | 'el' => 'ElColumn', |
||
| 14 | ]; |
||
| 15 | |||
| 16 | protected $drivers = []; |
||
| 17 | |||
| 18 | public function __construct($app) |
||
| 22 | |||
| 23 | public function make($option, $driver = null) |
||
| 28 | |||
| 29 | public function driver($driver = null) |
||
| 38 | |||
| 39 | protected function getDefaultDriver() |
||
| 43 | |||
| 44 | protected function createDriver($driver) |
||
| 51 | } |
||
| 52 |