PHP Classes

File: resources/libraries/example.php

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

Contents

Class file image Download
<?php

/**
 * MyProjectNameHere <http://www.example.com>
 * Example PHP Library
 *
 * It is possible to load PHP libraries dynamically through PHP Factory. To load this library,
 * you need to call loadLibrary('example') call from within MVC objects that are extended from
 * Wave Framework Factory class.
 *
 * @package Factory
 * @author DeveloperNameHere <email@example.com>
 * @copyright Copyright (c) 2012, ProjectOwnerNameHere
 * @license Unrestricted
 * @tutorial /doc/pages/guide_objects.htm
 * @since 1.0.0
 * @version 1.0.0
 */
 
function example(){
    echo
'works';
}

?>