<?php /** * The Welcome Controller. * * A basic controller example. Has examples of how to set the * response body and status. * * @package app * @extends Controller */ class Controller_Hello extends Controller { /** * The basic welcome message * * @access public * @return Response */ public function action_index() { echo "hello world!"; } }
It looks like you're new here. If you want to get involved, click one of these buttons!