Esempio n. 1
0
 public function controller_global()
 {
     $this->cms();
     $this->contact_form = new WaxForm(new GetInTouch());
     if ($data = $this->contact_form->save()) {
         $notify = new Notify();
         $notify->send_contact_details($data->row);
         $this->redirect_to("/thanks/contact");
     }
 }