11 lines
211 B
PHP
11 lines
211 B
PHP
|
<?php defined('SYSPATH') or die('No direct script access.');
|
||
|
|
||
|
class Controller_Welcome extends Controller {
|
||
|
|
||
|
public function action_index()
|
||
|
{
|
||
|
$this->request->response = 'hello, world!';
|
||
|
}
|
||
|
|
||
|
} // End Welcome
|