Current Path : /var/www/html/wp-content/plugins/duplicator-pro/src/Models/Storages/ |
Current File : /var/www/html/wp-content/plugins/duplicator-pro/src/Models/Storages/VultrStorage.php |
<?php /** * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Models\Storages; class VultrStorage extends AmazonS3CompatibleStorage { /** * Return the storage type * * @return int */ public static function getSType() { return 12; } /** * Returns the storage type name. * * @return string */ public static function getStypeName() { return __('Vultr', 'duplicator-pro'); } /** * Returns the storage type icon url. * * @return string The icon url */ protected static function getIconUrl() { return DUPLICATOR_PRO_IMG_URL . '/vultr.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://my.vultr.com/objectstorage/'; } /** * 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' => __('Vultr Object Storage', 'duplicator-pro'), 'url' => 'https://www.vultr.com/docs/vultr-object-storage/', ], ]; } }