PHP Classes

File: resources/scripts/example.script.php

Recommend this page to a friend!
  Classes of Kristo Vaher   Wave Framework   resources/scripts/example.script.php   Download  
File: resources/scripts/example.script.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Wave Framework
MVC framework for building Web sites and APIs
Author: By
Last change: Update of resources/scripts/example.script.php
Date: 2 months ago
Size: 587 bytes
 

Contents

Class file image Download
<?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';
}

?>