1 | <?php |
||
39 | class ViewConfig extends ContainerConfig |
||
40 | { |
||
41 | protected $values = [ |
||
42 | ViewMap::class => [], |
||
43 | ViewPaths::class => [], |
||
44 | LayoutMap::class => [], |
||
45 | LayoutPaths::class => [] |
||
46 | ]; |
||
47 | |||
48 | /** |
||
49 | * SetTemplatePath |
||
50 | * |
||
51 | * @param mixed $path DESCRIPTION |
||
52 | * |
||
53 | * @return mixed |
||
54 | * |
||
55 | * @access public |
||
56 | */ |
||
57 | public function addTemplatePath($path) |
||
62 | |||
63 | /** |
||
64 | * Define Aura\View and Aura\Html factories and services |
||
65 | * |
||
66 | * @param Container $di DI Container |
||
67 | * |
||
68 | * @return void |
||
69 | * |
||
70 | * @access public |
||
71 | * |
||
72 | * @SuppressWarnings(PHPMD.ShortVariable) |
||
73 | */ |
||
74 | public function define(Container $di) |
||
100 | } |
||
101 |