batufa/application/classes/controller/welcome.php

11 lines
207 B
PHP
Raw Normal View History

<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Welcome extends Controller {
public function action_index()
{
2010-12-22 19:47:17 +02:00
$this->response->body('hello, world!');
}
} // End Welcome