当前位置: 首页>>代码示例>>PHP>>正文


PHP ezcBase::autoload方法代码示例

本文整理汇总了PHP中ezcBase::autoload方法的典型用法代码示例。如果您正苦于以下问题:PHP ezcBase::autoload方法的具体用法?PHP ezcBase::autoload怎么用?PHP ezcBase::autoload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ezcBase的用法示例。


在下文中一共展示了ezcBase::autoload方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __autoload

function __autoload($className)
{
    try {
        ezcBase::autoload($className);
    } catch (Exception $e) {
        echo $e->getMessage();
    }
}
开发者ID:ernestob,项目名称:ezflow,代码行数:8,代码来源:ezpxmlextfilelist.php

示例2: __autoload

function __autoload($className)
{
    if (strpos($className, '_') !== false) {
        $file = str_replace('_', '/', $className) . '.php';
        @($val = (require_once $file));
        return $val === true;
    }
    ezcBase::autoload($className);
}
开发者ID:naderman,项目名称:ezc-unit-test,代码行数:9,代码来源:bootstrap.php

示例3: glpiautoload

 function glpiautoload($classname)
 {
     global $DEBUG_AUTOLOAD, $CFG_GLPI;
     static $notfound = array();
     // empty classname or non concerted plugin
     if (empty($classname) || is_numeric($classname)) {
         return false;
     }
     $dir = GLPI_ROOT . "/inc/";
     //$classname="PluginExampleProfile";
     if ($plug = isPluginItemType($classname)) {
         $plugname = strtolower($plug['plugin']);
         $dir = GLPI_ROOT . "/plugins/{$plugname}/inc/";
         $item = strtolower($plug['class']);
         // Is the plugin activate ?
         // Command line usage of GLPI : need to do a real check plugin activation
         if (isCommandLine()) {
             $plugin = new Plugin();
             if (count($plugin->find("directory='{$plugname}' AND state=" . Plugin::ACTIVATED)) == 0) {
                 // Plugin does not exists or not activated
                 return false;
             }
         } else {
             // Standard use of GLPI
             if (!in_array($plugname, $_SESSION['glpi_plugins'])) {
                 // Plugin not activated
                 return false;
             }
         }
     } else {
         // Is ezComponent class ?
         if (preg_match('/^ezc([A-Z][a-z]+)/', $classname, $matches)) {
             include_once GLPI_EZC_BASE;
             ezcBase::autoload($classname);
             return true;
         } else {
             $item = strtolower($classname);
         }
     }
     // No errors for missing classes due to implementation
     if (!isset($CFG_GLPI['missingclasses']) or !in_array($item, $CFG_GLPI['missingclasses'])) {
         if (file_exists("{$dir}{$item}.class.php")) {
             include_once "{$dir}{$item}.class.php";
             if ($_SESSION['glpi_use_mode'] == DEBUG_MODE) {
                 $DEBUG_AUTOLOAD[] = $classname;
             }
         } else {
             if (!isset($notfound["x{$classname}"])) {
                 // trigger an error to get a backtrace, but only once (use prefix 'x' to handle empty case)
                 //logInFile('debug',"file $dir$item.class.php not founded trying to load class $classname\n");
                 trigger_error("GLPI autoload : file {$dir}{$item}.class.php not founded trying to load class '{$classname}'");
                 $notfound["x{$classname}"] = true;
             }
         }
     }
 }
开发者ID:RubichonL,项目名称:glpi_monitoring,代码行数:56,代码来源:AllTests.php

示例4: __autoload

function __autoload($className)
{
    ezcBase::autoload($className);
}
开发者ID:p4prawin,项目名称:livechat,代码行数:4,代码来源:cron.php

示例5: __autoload

function __autoload($className)
{
    ezcBase::autoload($className);
    @(include SITE_ROOT . '/app/model/' . $className . '.php');
}
开发者ID:jpic,项目名称:Jetfuel,代码行数:5,代码来源:common.php

示例6: autoload

 public static function autoload($className)
 {
     if (class_exists('ezcBase')) {
         ezcBase::autoload($className);
     }
 }
开发者ID:Kirill,项目名称:mantisbt,代码行数:6,代码来源:MantisGraph.php

示例7: glpi_autoload

/**
 * To load classes
 *
 * @param $classname : class to load
**/
function glpi_autoload($classname)
{
    global $DEBUG_AUTOLOAD, $CFG_GLPI;
    static $notfound = array('xStates' => true, 'xAllAssets' => true);
    // empty classname or non concerted plugin or classname containing dot (leaving GLPI main treee)
    if (empty($classname) || is_numeric($classname) || strpos($classname, '.') !== false) {
        die("Security die. trying to load an forbidden class name");
    }
    $dir = GLPI_ROOT . "/inc/";
    if ($plug = isPluginItemType($classname)) {
        $plugname = strtolower($plug['plugin']);
        $dir = GLPI_ROOT . "/plugins/{$plugname}/inc/";
        $item = strtolower($plug['class']);
        // Is the plugin activate ?
        // Command line usage of GLPI : need to do a real check plugin activation
        if (isCommandLine()) {
            $plugin = new Plugin();
            if (count($plugin->find("directory='{$plugname}' AND state=" . Plugin::ACTIVATED)) == 0) {
                // Plugin does not exists or not activated
                return false;
            }
        } else {
            // Standard use of GLPI
            if (!in_array($plugname, $_SESSION['glpi_plugins'])) {
                // Plugin not activated
                return false;
            }
        }
    } else {
        // Is ezComponent class ?
        if (preg_match('/^ezc([A-Z][a-z]+)/', $classname, $matches)) {
            include_once GLPI_EZC_BASE;
            ezcBase::autoload($classname);
            return true;
        }
        // Do not try to load phpcas using GLPI autoload
        if (preg_match('/^CAS_.*/', $classname)) {
            return false;
        }
        // Do not try to load Zend using GLPI autoload
        if (preg_match('/^Zend.*/', $classname)) {
            return false;
        }
        // Do not try to load Simplepie using GLPI autoload
        if (preg_match('/^SimplePie.*/', $classname)) {
            return false;
        }
        $item = strtolower($classname);
    }
    if (file_exists("{$dir}{$item}.class.php")) {
        include_once "{$dir}{$item}.class.php";
        if (isset($_SESSION['glpi_use_mode']) && $_SESSION['glpi_use_mode'] == Session::DEBUG_MODE) {
            $DEBUG_AUTOLOAD[] = $classname;
        }
    } else {
        if (!isset($notfound["x{$classname}"])) {
            // trigger an error to get a backtrace, but only once (use prefix 'x' to handle empty case)
            //          trigger_error("GLPI autoload : file $dir$item.class.php not founded trying to load class '$classname'");
            $notfound["x{$classname}"] = true;
        }
    }
}
开发者ID:kipman,项目名称:glpi,代码行数:67,代码来源:autoload.function.php

示例8: webdav_autoload

/**
 * Autoload ezc classes 
 * 
 * @param string $className 
 */
function webdav_autoload($className)
{
    ezcBase::autoload($className);
}
开发者ID:rjsmelo,项目名称:tiki,代码行数:9,代码来源:autoload.php

示例9: autoload

 public static function autoload($class)
 {
   return ezcBase::autoload($class);
 }
开发者ID:nationalfield,项目名称:symfony,代码行数:4,代码来源:sfEzComponentsBridge.class.php

示例10: ezc_autoload

function ezc_autoload($className)
{
    if (strpos($className, '_') === false) {
        ezcBase::autoload($className);
    }
}
开发者ID:corcre,项目名称:elabftw,代码行数:6,代码来源:bootstrap.php

示例11: __autoload

function __autoload($class)
{
    ezcBase::autoload($class);
}
开发者ID:bmdevel,项目名称:ezc,代码行数:4,代码来源:kore_server.php

示例12: autoload

function autoload($class)
{
    \ezcBase::autoload($class);
}
开发者ID:sbechtel,项目名称:PHPLPM,代码行数:4,代码来源:Command.php

示例13: autoload

 /**
  * Autoload-Method
  *
  * @param string $class name of the class
  */
 public function autoload($class)
 {
     ezcBase::autoload($class);
 }
开发者ID:robo47,项目名称:robo47-components,代码行数:9,代码来源:Ezc.php

示例14: __autoload

/**
 * Autoload ezc classes 
 * 
 * @param string $className 
 */
function __autoload($className)
{
    if (ezcBase::autoload($className)) {
        return;
    }
}
开发者ID:brookinsconsulting,项目名称:ezecosystem,代码行数:11,代码来源:autoload.php


注:本文中的ezcBase::autoload方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。