Total Complexity | 0 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Profile extends AdminController |
||
14 | { |
||
15 | const VERSION = '1.0.1'; |
||
16 | const ITEM_PER_PAGE = 10; |
||
17 | |||
18 | public $type = 'app'; |
||
19 | |||
20 | /** Import heavy actions */ |
||
21 | use Profile\ActionIndex { |
||
|
|||
22 | index as actionIndex; |
||
23 | } |
||
24 | |||
25 | use Profile\ActionUpdate { |
||
26 | profileUpdate as actionUpdate; |
||
27 | } |
||
28 | |||
29 | use Profile\ActionFieldList { |
||
30 | profileFieldList as actionFieldlist; |
||
31 | } |
||
32 | |||
33 | use Profile\ActionFieldUpdate { |
||
34 | profileFieldUpdate as actionFieldupdate; |
||
35 | } |
||
36 | |||
37 | use Profile\ActionFieldDelete { |
||
38 | profileFieldDelete as actionFielddelete; |
||
39 | } |
||
40 | |||
41 | use Profile\ActionSettings { |
||
42 | settings as actionSettings; |
||
43 | } |
||
45 |