Exemplo n.º 1
0
 /**
  * Automatic class loading handler.  This automatically loads a class using the path
  * information that was registered using the ZoopLoader::class method 
  *
  * @param string $className Name of the class to load
  */
 static function autoload($className)
 {
     $classPath = ZoopLoader::getClassPath($className);
     if ($classPath) {
         require_once $classPath;
     }
     if (substr($className, 0, 5) == 'Zend_') {
         $parts = explode('_', $className);
         $modName = $parts[1];
         require_once zoop_dir . "/vendor/Zend/{$modName}.php";
     }
 }
Exemplo n.º 2
0
 /**
  * Automatic class loading handler.  This automatically loads a class using the path
  * information that was registered using the ZoopLoader::class method 
  *
  * @param string $className Name of the class to load
  */
 static function autoload($className)
 {
     $classPath = ZoopLoader::getClassPath($className);
     if ($classPath) {
         require_once $classPath;
     }
     if (substr($className, 0, 5) == 'Zend_') {
         // $parts = explode('_', $className);
         // $modName = $parts[1];
         $shortPath = str_replace('_', '/', $className);
         require_once zoop_dir . "/vendor/zend/{$shortPath}.php";
     }
 }