1 | <?php |
||
7 | class WidgetAdminManager extends AdminManager |
||
8 | { |
||
9 | /** |
||
10 | * Admin Config Key. |
||
11 | * |
||
12 | * Key which defined where in the Flare Admin Config to |
||
13 | * load the WidgetAdmin classes from. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | const ADMIN_KEY = 'widgets'; |
||
18 | |||
19 | /** |
||
20 | * Base Class. |
||
21 | * |
||
22 | * The Base Class for Module Admin's |
||
23 | */ |
||
24 | const BASE_CLASS = 'LaravelFlare\Flare\Admin\Widgets\WidgetAdmin'; |
||
25 | |||
26 | /** |
||
27 | * __construct. |
||
28 | */ |
||
29 | public function __construct() |
||
33 | |||
34 | /** |
||
35 | * Returns a collection of Widget Classes |
||
36 | * |
||
37 | * @return |
||
38 | */ |
||
39 | public function items() |
||
43 | } |
||
44 |