PHP Classes

File: autoload.php

Recommend this page to a friend!
  Classes of inwebo   My DeviantArt API   autoload.php   Download  
File: autoload.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: My DeviantArt API
Retrieve information from DeviantArt accounts
Author: By
Last change: Update of autoload.php
Date: 4 months ago
Size: 1,081 bytes
 

Contents

Class file image Download
<?php
/**
  * My Framework : My.Forms
  *
  * LICENCE
  *
  * You are free:
  * to Share ,to copy, distribute and transmit the work to Remix —
  * to adapt the work to make commercial use of the work
  *
  * Under the following conditions:
  * Attribution, You must attribute the work in the manner specified by
  * the author or licensor (but not in any way that suggests that they
  * endorse you or your use of the work).
  *
  * Share Alike, If you alter, transform, or build upon
  * this work, you may distribute the resulting work only under the
  * same or similar license to this one.
  *
  *
  * @category My.Forms
  * @package Extra
  * @copyright Copyright (c) 2005-2011 Inwebo (http://www.inwebo.net)
  * @license http://http://creativecommons.org/licenses/by-nc-sa/3.0/
  * @version $Id:$
  * @link https://github.com/inwebo/My.Forms
  * @since File available since Beta 01-10-2011
  */
function __autoload($class_name) {
    include
dirname(__FILE__).'/lib/class.'.strtolower($class_name) . '.php';
}