コード例 #1
0
ファイル: DBStorage.php プロジェクト: crunnells/shopp
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Database', 'Shopp');
     $this->_table = ShoppDatabaseObject::tablename($this->_table);
     $this->_metatable = ShoppDatabaseObject::tablename($this->_metatable);
 }
コード例 #2
0
ファイル: FSStorage.php プロジェクト: robbiespire/paQui
	/**
	 * FSStorage constructor
	 *	 
	 *
	 * @return void
	 **/
	function __construct () {
		parent::__construct();
		$this->name = __('File system','Ecart');
	}
コード例 #3
0
ファイル: FSStorage.php プロジェクト: forthrobot/inuvik
 /**
  * FSStorage constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('File system', 'Shopp');
     $this->webroot = apply_filters('shopp_fsstorage_webroot', $_SERVER['DOCUMENT_ROOT']);
 }