本文整理汇总了PHP中UniteBaseClassRev::path_cache方法的典型用法代码示例。如果您正苦于以下问题:PHP UniteBaseClassRev::path_cache方法的具体用法?PHP UniteBaseClassRev::path_cache怎么用?PHP UniteBaseClassRev::path_cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UniteBaseClassRev
的用法示例。
在下文中一共展示了UniteBaseClassRev::path_cache方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setPathCache
/**
*
* set cache path for images. for multisite it will be current blog content folder
*/
private static function setPathCache()
{
self::$path_cache = self::$path_plugin . "cache/";
if (self::$is_multisite) {
if (!defined("BLOGUPLOADDIR") || !is_dir(BLOGUPLOADDIR)) {
return false;
}
$path = BLOGUPLOADDIR . self::$dir_plugin . "-cache/";
if (!is_dir($path)) {
mkdir($path);
}
if (is_dir($path)) {
self::$path_cache = $path;
}
}
}
示例2: __construct
/**
*
* the constructor
*/
public function __construct($mainFile, $t)
{
global $wpdb;
self::$is_multisite = UniteFunctionsWPRev::isMultisite();
self::$wpdb = $wpdb;
self::$table_prefix = "#__";
if (UniteFunctionsWPRev::isMultisite()) {
$blogID = UniteFunctionsWPRev::getBlogID();
if ($blogID != 1) {
self::$table_prefix .= $blogID . "_";
}
}
self::$mainFile = $mainFile;
self::$t = $t;
self::$dir_plugin = "uniterevolution";
self::$url_base = JURI::root();
self::$url_plugin = self::$url_base . "administrator/components/" . GlobalsRevSlider::PLUGIN_NAME . "/";
self::$url_component = self::$url_base . "administrator/index.php?option=" . GlobalsRevSlider::PLUGIN_NAME;
self::$url_component_client = self::$url_base . "index.php?option=" . GlobalsRevSlider::PLUGIN_NAME;
self::$url_ajax = self::$url_base . "administrator/index.php?option=" . GlobalsRevSlider::PLUGIN_NAME;
self::$url_ajax_actions = self::$url_ajax . "&action=" . self::$dir_plugin . "_ajax_action";
self::$url_ajax_showimage = self::$url_ajax . "&action=" . self::$dir_plugin . "_show_image";
self::$path_plugin = dirname(self::$mainFile) . "/";
self::$path_settings = self::$path_plugin . "settings/";
self::$path_temp = self::$path_plugin . "temp/";
//set cache path:
self::setPathCache();
self::$path_views = self::$path_plugin . "views/";
self::$path_templates = self::$path_views . "/templates/";
self::$path_languages = self::$path_plugin . "languages/";
self::$dir_languages = self::$dir_plugin . "/languages/";
load_plugin_textdomain(self::$dir_plugin, false, self::$dir_languages);
//update globals oldversion flag
GlobalsRevSlider::$isNewVersion = false;
$version = get_bloginfo("version");
$version = (double) $version;
if ($version >= 3.5) {
GlobalsRevSlider::$isNewVersion = true;
}
//joomla addition:
self::$url_media = self::$url_base . "media/" . GlobalsRevSlider::PLUGIN_NAME . "/";
self::$url_item_plugin = self::$url_media . "assets/rs-plugin/";
self::$path_media = JPATH_ROOT . "/media/" . GlobalsRevSlider::PLUGIN_NAME . "/";
self::$path_cache = self::$path_media . "cache/";
}
示例3: setPathCache
/**
*
* set cache path for images. for multisite it will be current blog content folder
*/
private static function setPathCache()
{
self::$path_cache = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
}