SiteController.php 253 B

123456789101112131415
  1. <?php
  2. /**
  3. * SiteController is the default controller to handle user requests.
  4. */
  5. class SiteController extends CController
  6. {
  7. /**
  8. * Index action is the default action in a controller.
  9. */
  10. public function actionIndex()
  11. {
  12. echo 'Hello World';
  13. }
  14. }