1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\mocks\action;
- class MockPostsController extends \lithium\action\Controller {
- public $stopped = false;
- public function index($test = false) {
- if ($test) {
- return array('foo' => 'bar');
- }
- return 'List of posts';
- }
- public function delete($id = null) {
- if (empty($id)) {
- return $this->redirect('/posts', array('exit' => false));
- }
- return "Deleted {$id}";
- }
- public function send() {
- $this->redirect('/posts', array('exit' => true));
- }
- public function type($raw = false) {
- return array('data' => 'test');
- }
- public function notFound($id = null) {
- $this->response->status(404);
- $this->render(array('json' => $this->response->status));
- }
- public function view($id = null) {
- $this->render(array('text', 'data' => 'This is a post'));
- }
- public function view2($id = null) {
- $this->render(array('template' => 'view'));
- }
- public function view3($id = null) {
- $this->render(array('layout' => false, 'template' => 'view'));
- }
- public function changeTemplate() {
- $this->_render['template'] = 'foo';
- }
- protected function _safe() {
- throw new Exception('Something wrong happened');
- }
- public function access($var) {
- return $this->{$var};
- }
- protected function _stop($status = 0 ) {
- $this->stopped = true;
- }
- }
- ?>
|