Login   Register  
PHP Classes
elePHPant
Icontem

File: config.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Tom Schaefer  >  QGoogleVisualizationAPI  >  config.inc.php  >  Download  
File: config.inc.php
Role: Configuration script
Content type: text/plain
Description: loader of classes
Class: QGoogleVisualizationAPI
Google Visualization API (deprecated)
Author: By
Last change: remove tracer class from loading
Date: 2008-07-01 11:44
Size: 405 bytes
 

Contents

Class file image Download
<?php

function __autoload($className=null) {
    
$classes = array (
        
'QConfig.class.php'
        
'QInflector.class.php'
        
'QTool.class.php'
        
'QGoogleGraph.class.php'
        
'QVizualisationGoogleGraph.class.php'
        
'QApikeyGoogleGraph.class.php'
    );

    foreach(
$classes as $class) {
        include_once(
$class);
    }

    include_once(
$className.".class.php");

}