1234567891011121314151617181920212223242526 |
- <?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 app\controllers;
- class HelloWorldController extends \lithium\action\Controller {
- public function index() {
- return $this->render(array('layout' => false));
- }
- public function to_string() {
- return "Hello, World!";
- }
- public function to_json() {
- return $this->render(array('json' => 'Hello, World!'));
- }
- }
- ?>
|