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/GoogleCloudStorage.php |
<?php /** * * @package Duplicator * @copyright (c) 2022, Snap Creek LLC */ namespace Duplicator\Models\Storages; class GoogleCloudStorage extends AmazonS3CompatibleStorage { /** * Return the storage type * * @return int */ public static function getSType() { return 16; } /** * Returns the storage type name. * * @return string */ public static function getStypeName() { return __('Google Cloud Storage', 'duplicator-pro'); } /** * Get storage location string * * @return string */ public function getLocationString() { return 'https://console.cloud.google.com/storage/browser/' . $this->config['bucket'] . $this->config['storage_folder']; } /** * Returns the storage type icon url. * * @return string The icon url */ protected static function getIconUrl() { return DUPLICATOR_PRO_IMG_URL . '/google-cloud.svg'; } /** * Get documentation links * * @return array<int,array<string,string>> */ protected static function getDocumentationLinks() { return [ [ 'label' => __('Interoperability with S3 API', 'duplicator-pro'), 'url' => 'https://cloud.google.com/storage/docs/interoperability', ], ]; } }