Total Complexity | 3 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Profile extends AdminController |
||
15 | { |
||
16 | const VERSION = '1.0.0'; |
||
17 | const ITEM_PER_PAGE = 10; |
||
18 | |||
19 | public $type = 'app'; |
||
20 | |||
21 | /** Import heavy actions */ |
||
22 | use Profile\ActionIndex { |
||
|
|||
23 | index as actionIndex; |
||
24 | } |
||
25 | |||
26 | use Profile\ActionUpdate { |
||
27 | profileUpdate as actionUpdate; |
||
28 | } |
||
29 | |||
30 | use Profile\ActionFieldList { |
||
31 | profileFieldList as actionFieldlist; |
||
32 | } |
||
33 | |||
34 | use Profile\ActionFieldUpdate { |
||
35 | profileFieldUpdate as actionFieldupdate; |
||
36 | } |
||
37 | |||
38 | use Profile\ActionFieldDelete { |
||
39 | profileFieldDelete as actionFielddelete; |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * Show profiles settings |
||
44 | * @return string |
||
45 | * @throws \Ffcms\Core\Exception\SyntaxException |
||
46 | */ |
||
47 | public function actionSettings() |
||
66 |