PHP Classes

File: resources/classes/class.example.php

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

Contents

Class file image Download
<?php

/**
 * MyProjectNameHere <http://www.example.com>
 * Example PHP Class
 *
 * It is possible to PHP classes dynamically through Wave Framework Factory. To load this
 * class, you need to call $this->getObject('example') method within MVC classes that are
 * extended from WWW_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
 */
 
class example {
    private
$myMessage='works';
    public function
test(){
        echo
$this->myMessage;
    }
}

?>