Current Path : /var/www/mainsite/wp-content/plugins/duplicator-pro/src/Models/Storages/ |
Current File : /var/www/mainsite/wp-content/plugins/duplicator-pro/src/Models/Storages/DreamStorage.php |
<?php /** * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Models\Storages; class DreamStorage extends AmazonS3CompatibleStorage { /** * Return the storage type * * @return int */ public static function getSType() { return 13; } /** * Returns the storage type name. * * @return string */ public static function getStypeName() { return __('Dream Objects', 'duplicator-pro'); } /** * Returns the storage type icon url. * * @return string The icon url */ protected static function getIconUrl() { return DUPLICATOR_PRO_IMG_URL . '/dreamhost.svg'; } /** * Return true if the region is generated automatically * * @return bool */ public function isAutofillRegion() { return true; } /** * Get storage location string * * @return string */ public function getLocationString() { return 'https://panel.dreamhost.com/index.cgi?tree=cloud.objects'; } /** * Returns the storage location label. * * @return string The storage location label */ protected function getLocationLabel() { return __('Bucket List', 'duplicator-pro'); } /** * Get documentation links * * @return array<int,array<string,string>> */ protected static function getDocumentationLinks() { return [ [ 'label' => __('Overview', 'duplicator-pro'), 'url' => 'https://help.dreamhost.com/hc/en-us/articles/214823108-DreamObjects-overview', ], [ 'label' => __('S3 Compatible API', 'duplicator-pro'), 'url' => 'https://help.dreamhost.com/hc/en-us/articles/217590537-How-To-Use-DreamObjects-S3-compatible-API', ], ]; } }