1 | <?php |
||
7 | class Basic implements MenuRender |
||
8 | { |
||
9 | /** |
||
10 | * @var Container |
||
11 | */ |
||
12 | protected $container; |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $variables = []; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $view; |
||
23 | |||
24 | /** |
||
25 | * @inheritDoc |
||
26 | */ |
||
27 | 31 | public function __construct(Container $container) |
|
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | 9 | public function make($view) |
|
47 | |||
48 | /** |
||
49 | * @inheritDoc |
||
50 | */ |
||
51 | 8 | public function with($params, $value = null) |
|
63 | |||
64 | /** |
||
65 | * @inheritDoc |
||
66 | */ |
||
67 | 9 | public function render() |
|
75 | |||
76 | /** |
||
77 | * @inheritDoc |
||
78 | */ |
||
79 | 22 | public function exists($view) |
|
84 | |||
85 | /** |
||
86 | * @param string $view |
||
87 | * @return bool|string |
||
88 | */ |
||
89 | 25 | protected function findFullPath($view) |
|
90 | { |
||
91 | 25 | $paths = $this->container->make('config')->get('menu.paths'); |
|
92 | |||
93 | 25 | foreach ($paths as $path) { |
|
94 | 25 | $template = $path . '/' . $view . '.php'; |
|
95 | 25 | if (file_exists($template)) { |
|
96 | 25 | return $template; |
|
97 | } |
||
98 | } |
||
99 | |||
100 | 22 | return false; |
|
101 | } |
||
102 | |||
103 | /** |
||
104 | * @param string $view |
||
105 | * @return string |
||
106 | */ |
||
107 | 25 | protected function replaceNameFromBlade($view) |
|
111 | } |