Guest User

Untitled

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