當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Smarty_Autoloader類代碼示例

本文整理匯總了PHP中Smarty_Autoloader的典型用法代碼示例。如果您正苦於以下問題:PHP Smarty_Autoloader類的具體用法?PHP Smarty_Autoloader怎麽用?PHP Smarty_Autoloader使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Smarty_Autoloader類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: register

 /**
  * Registers Smarty_Autoloader as an SPL autoloader.
  *
  * @param bool $prepend Whether to prepend the autoloader or not.
  */
 public static function register($prepend = false)
 {
     self::$SMARTY_DIR = defined('SMARTY_DIR') ? SMARTY_DIR : dirname(__FILE__) . DIRECTORY_SEPARATOR;
     self::$SMARTY_SYSPLUGINS_DIR = defined('SMARTY_SYSPLUGINS_DIR') ? SMARTY_SYSPLUGINS_DIR : self::$SMARTY_DIR . 'sysplugins' . DIRECTORY_SEPARATOR;
     if (version_compare(phpversion(), '5.3.0', '>=')) {
         spl_autoload_register(array(__CLASS__, 'autoload'), true, $prepend);
     } else {
         spl_autoload_register(array(__CLASS__, 'autoload'));
     }
 }
開發者ID:songdent,項目名稱:pandaphp,代碼行數:15,代碼來源:Autoloader.php

示例2: register

 /**
  * Registers Smarty_Autoloader as an SPL autoloader.
  * @param bool $prepend Whether to prepend the autoloader or not.
  */
 public static function register($prepend = FALSE)
 {
     self::$SMARTY_DIR = defined('SMARTY_DIR') ? SMARTY_DIR : dirname(__FILE__) . '/';
     self::$SMARTY_SYSPLUGINS_DIR = defined('SMARTY_SYSPLUGINS_DIR') ? SMARTY_SYSPLUGINS_DIR : self::$SMARTY_DIR . 'sysplugins/';
     if (version_compare(phpversion(), '5.3.0', '>=')) {
         spl_autoload_register([__CLASS__, 'autoload'], TRUE, $prepend);
     } else {
         spl_autoload_register([__CLASS__, 'autoload']);
     }
 }
開發者ID:rendix2,項目名稱:QW_MVS,代碼行數:14,代碼來源:Autoloader.php

示例3: define

}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
    /**
     * @deprecated in favor of Smarty::$_DATE_FORMAT
     */
    define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * Try loading the Smarty_Internal_Data class
 * If we fail we must load Smarty's autoloader.
 * Otherwise we may have a global autoloader like Composer
 */
if (!class_exists('Smarty_Autoloader', false)) {
    if (!class_exists('Smarty_Internal_Data', true)) {
        require_once 'Autoloader.php';
        Smarty_Autoloader::registerBC();
    }
}
/**
 * Load always needed external class files
 */
if (!class_exists('Smarty_Internal_Data', false)) {
    require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
}
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_variable.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_source.php';
/**
 * This is the main Smarty class
開發者ID:redaxle,項目名稱:smarty,代碼行數:31,代碼來源:Smarty.class.php

示例4: define

}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
    /**
     * @deprecated in favor of Smarty::$_DATE_FORMAT
     */
    define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * Try loading the Smarty_Internal_Data class
 * If we fail we must load Smarty's autoloader.
 * Otherwise we may have a global autoloader like Composer
 */
if (!class_exists('Smarty_Autoloader', false)) {
    if (!class_exists('Smarty_Internal_Data', false)) {
        require_once dirname(__FILE__) . '/Autoloader.php';
        Smarty_Autoloader::registerBC(true);
    }
}
/**
 * Load always needed external class files
 */
if (!class_exists('Smarty_Internal_Data', false)) {
    require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
}
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_extension_handler.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_variable.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_source.php';
require_once SMARTY_SYSPLUGINS_DIR . 'smarty_template_resource_base.php';
開發者ID:songdent,項目名稱:pandaphp,代碼行數:31,代碼來源:Smarty.class.php

示例5: registerSmarty

 public static function registerSmarty()
 {
     // Smarty autoloader
     require_once self::$libsPath . 'smarty/Autoloader.php';
     Smarty_Autoloader::register();
 }
開發者ID:highlands-framework,項目名稱:highlands-framework,代碼行數:6,代碼來源:Autoloader.php

示例6: GetSmarty

function GetSmarty()
{
    require_once "{$rootpath}/thirdparty/smarty/libs/Autoloader.php";
    Smarty_Autoloader::register();
    $smarty = new Smarty();
    return $smarty;
}
開發者ID:jaredballou,項目名稱:insurgency-tools-old,代碼行數:7,代碼來源:functions.php


注:本文中的Smarty_Autoloader類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。