root/components/library/_start.php

User picture

Author: blaine

Revision: 262 («Previous)


File Size: 650 Bytes

(May 01, 2009 19:50 UTC) About 3 years ago

begin of the change to make possible to use the code to diagram by a external link. still has a problem with the public external css link to be solved.

 
Show/hide line numbers
<?php
/**
 * Library Start
 * @package library
 */

/**
 * Load the library package
 */
if( class_exists( "Loader" ) )
{
    Loader::requireOnce( "CorujaArrayManipulation.class.php" , true );
    Loader::requireOnce( "CorujaClassManipulation.class.php" , true );
    Loader::requireOnce( "CorujaStringManipulation.class.php" , true );
    Loader::requireOnce( "CorujaFileManipulation.class.php" , true );
}
else
{
    require_once( "CorujaArrayManipulation.class.php" );
    require_once( "CorujaClassManipulation.class.php" );
    require_once( "CorujaStringManipulation.class.php" );
    require_once( "CorujaFileManipulation.class.php" );    
}
?>