Files
yii/demos/helloworld/protected/controllers/SiteController.php
2008-10-13 21:26:19 +00:00

15 lines
253 B
PHP

<?php
/**
* SiteController is the default controller to handle user requests.
*/
class SiteController extends CController
{
/**
* Index action is the default action in a controller.
*/
public function actionIndex()
{
echo 'Hello World';
}
}