示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Database', 'Shopp');
     $this->_table = ShoppDatabaseObject::tablename($this->_table);
     $this->_metatable = ShoppDatabaseObject::tablename($this->_metatable);
 }
示例#2
0
	/**
	 * FSStorage constructor
	 *	 
	 *
	 * @return void
	 **/
	function __construct () {
		parent::__construct();
		$this->name = __('File system','Ecart');
	}
示例#3
0
 /**
  * FSStorage constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('File system', 'Shopp');
     $this->webroot = apply_filters('shopp_fsstorage_webroot', $_SERVER['DOCUMENT_ROOT']);
 }