9 lines
214 B
PHP
Raw Permalink Normal View History

2012-01-19 22:40:53 +11:00
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Welcome extends Controller_Template {
public function action_index() {
$this->response->body('hello, world!');
}
} // End Welcome