Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /**
  2. * Displays the DealSearch content
  3. */
  4. public function actionDealSearch()
  5. {
  6. $model = new DealSearchForm();
  7. if(isset($_POST['dealsearch']))
  8. {
  9. // TODO 1: make sure at least 1 field was entered
  10. // send user to deallist page
  11. echo "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
  12. $this->redirect(Yii::app()->site/deallist);
  13. }
  14. $this->render('dealsearch',array('model'=>$model));
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement