Beispiel #1
0
 /**
  * 
  * 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/";
 }