コード例 #1
0
 public function add()
 {
     // get event id
     $event_id = preg_match('/[0-9]+$/', $_REQUEST['text']);
     //get all users
     $userModel = new userMangerModel();
     $userModel->load();
     //create event object
     $event = new eventModel();
     if ($event->add($event_id)) {
         foreach ($userModel->users as $user) {
             $event->inviteUser($user);
         }
         // set message to everything is ok!
         $this->smarty->assign('admin_message', 'everything is ok!');
     } else {
         // set message to event not found / couldn't be added to application
         $this->smarty->assign('admin_message', 'event not found / couldn\'t be added to application');
     }
 }