15 lines
253 B
PHP
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';
|
||
|
}
|
||
|
}
|