Guest User

Untitled

a guest
May 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. function process(){
  4. $this->load->model('Roster_model', '', TRUE);
  5.  
  6. $action = $_REQUEST['action'];
  7. $pass_through = array(
  8. 'update_main', 'update_alt', 'update_rank',
  9. 'delete_main', 'delete_alt', 'delete_rank',
  10. 'insert_main', 'insert_alt', 'insert_rank'
  11. );
  12.  
  13. if(in_array($action, $pass_through)){
  14. $this->_$action();
  15. }
  16. }
  17.  
  18. ?>
Add Comment
Please, Sign In to add comment