Changeset 1386772
- Timestamp:
- 04/05/2016 01:21:19 AM (10 years ago)
- Location:
- blue-storage/branches/2.0.0
- Files:
-
- 3 edited
-
blue-storage.php (modified) (1 diff)
-
class-azure-storage-client.php (modified) (1 diff)
-
class-blue-storage-const.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blue-storage/branches/2.0.0/blue-storage.php
r1385807 r1386772 13 13 require_once( 'class-azure-storage-client.php' ); 14 14 require_once( 'class-blue-storage-const.php' ); 15 require_once ( 'libraries/httpful.phar' ); // Include here because we make a template to be used across the whole plugin 15 16 16 17 \BlueStorage\BlueStorageSettings::init(); 18 19 // Sets standard request template for Azure requests 20 $template = \Httpful\Request::init() 21 ->strictSSL(true) 22 ->expects('application/xml') 23 ->addHeaders( array('x-ms-version' => \BlueStorage\BlueStorageConst::X_MS_VERSION) ); -
blue-storage/branches/2.0.0/class-azure-storage-client.php
r1385637 r1386772 11 11 namespace BlueStorage; 12 12 13 require_once ( 'libraries/httpful.phar' );14 15 13 class AzureStorageClient 16 14 { -
blue-storage/branches/2.0.0/class-blue-storage-const.php
r1385707 r1386772 17 17 const ALLOW_COPY_TO_AZURE = true; 18 18 const ALLOW_DEFAULT_UPLOAD_CHANGE = true; 19 20 const X_MS_VERSION = '2015-04-05'; 19 21 }
Note: See TracChangeset
for help on using the changeset viewer.