| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class IconsAdmin extends ModelAdmin |
||
| 16 | { |
||
| 17 | private static $url_segment = 'icons'; |
||
|
|
|||
| 18 | |||
| 19 | private static $managed_models = [ |
||
| 20 | IconSVG::class, |
||
| 21 | |||
| 22 | ]; |
||
| 23 | |||
| 24 | private static $menu_icon_class = 'font-icon-picture'; |
||
| 25 | |||
| 26 | private static $menu_title = 'Icons'; |
||
| 27 | |||
| 28 | public function getEditForm($id = null, $fields = null) |
||
| 37 |