1
0
www.mikescher.com/demos/helloworld/protected/controllers/SiteController.php

15 lines
253 B
PHP
Raw Normal View History

2014-05-12 10:11:20 +02:00
<?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';
}
}