Guest User

Untitled

a guest
Nov 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php defined('SYSPATH') OR die('No direct script access.');
  2.  
  3. class Controller_Admin_User extends Controller_Template_Admin{
  4.  
  5. public function before()
  6. {
  7. parent::before();
  8. $this->template->sidemenu = $this->_config['sidemenu_user'];
  9. }
  10.  
  11. public function action_index()
  12. {
  13. $this->set_breadcrumb(array(
  14. 'admin',
  15. 'controll'
  16. ));
  17. }
  18.  
  19. public function action_list_all_user(){}
  20.  
  21. public function action_create_user(){}
  22.  
  23. public function action_list_all_groups(){}
  24.  
  25. public function action_create_groups(){}
  26.  
  27. }
  28.  
  29. ?>
Add Comment
Please, Sign In to add comment