コード例 #1
0
 /**
  * Executes index action
  *
  * @param sfRequest $request A request object
  */
 public function executeIndex(sfWebRequest $request)
 {
     $this->form = new PcTestimonialForm();
     $this->showFeedback = false;
     if ($request->isMethod('post')) {
         $this->form->bind($request->getParameter('testimonial'));
         if ($this->form->isValid()) {
             $fields = $request->getParameter('testimonial');
             $this->showFeedback = true;
             PcUtils::sendNotificationToAdmin("New testimonial");
             $this->form->save();
         }
     }
 }