| Total Complexity | 0 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class User extends AdminController |
||
| 13 | { |
||
| 14 | const VERSION = '1.0.1'; |
||
| 15 | const ITEM_PER_PAGE = 10; |
||
| 16 | |||
| 17 | public $type = 'app'; |
||
| 18 | |||
| 19 | use User\Boot; |
||
|
|
|||
| 20 | |||
| 21 | use User\ActionIndex { |
||
| 22 | index as actionIndex; |
||
| 23 | } |
||
| 24 | |||
| 25 | use User\ActionUpdate { |
||
| 26 | update as actionUpdate; |
||
| 27 | } |
||
| 28 | |||
| 29 | use User\ActionDelete { |
||
| 30 | delete as actionDelete; |
||
| 31 | } |
||
| 32 | |||
| 33 | use User\ActionClear { |
||
| 34 | clear as actionClear; |
||
| 35 | } |
||
| 36 | |||
| 37 | use User\ActionInviteList { |
||
| 38 | inviteList as actionInvitelist; |
||
| 39 | } |
||
| 40 | |||
| 41 | use User\ActionInviteSend { |
||
| 42 | inviteSend as actionInvite; |
||
| 43 | } |
||
| 44 | |||
| 45 | use User\ActionInviteDelete { |
||
| 46 | inviteDelete as actionInviteDelete; |
||
| 47 | } |
||
| 48 | |||
| 49 | use User\ActionRoleList { |
||
| 50 | listing as actionRolelist; |
||
| 51 | } |
||
| 52 | |||
| 53 | use User\ActionRoleUpdate { |
||
| 54 | roleUpdate as actionRoleupdate; |
||
| 55 | } |
||
| 56 | |||
| 57 | use User\ActionSettings { |
||
| 58 | settings as actionSettings; |
||
| 59 | } |
||
| 60 | |||
| 61 | use User\ActionApprove { |
||
| 62 | approve as actionApprove; |
||
| 63 | } |
||
| 65 |