| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Static content controller.
- *
- * This file will render views from views/pages/
- *
- * @link http://cakephp.org CakePHP(tm) Project
- * @package app.Controller
- * @since CakePHP(tm) v 0.2.9
- */
-
- App::uses('AppController', 'Controller');
-
- /**
- * Static content controller
- *
- * Override this controller by placing a copy in controllers directory of an application
- *
- * @package app.Controller
- * @link http://book.cakephp.org/2.0/en/controllers/pages-controller.html
- */
- class PagesController extends AppController {
-
- public $uses = array();
-
- public function home() {}
-
- public function search() {
- $this->set('query', $this->request->query['query']);
- }
-
- public function about() {}
-
- public function mission() {}
-
- public function news() {}
-
- public function contact() {}
-
- }
|