<?php
/** * MyProjectNameHere <http://www.example.com> * View PHP Script * * It is possible to load view specific PHP script, this file is loaded by the URL controller * if it is detected and found for the view that it loads. This file works like view-specific * autoload script. * * @package View Controller * @author DeveloperNameHere <email@example.com> * @copyright Copyright (c) 2012, ProjectOwnerNameHere * @license Unrestricted * @tutorial /doc/pages/guide_view.htm * @since 1.0.0 * @version 1.0.0 */ function example(){ echo 'works'; }
?>
|