PluginProbe
UpdraftPlus: WP Backup & Migration Plugin / 1.12.4
UpdraftPlus: WP Backup & Migration Plugin v1.12.4
1.26.7 1.26.6 1.26.5 1.26.4 1.26.3 1.9.19 1.9.25 1.9.26 1.9.30 1.9.31 1.9.32 1.9.4 1.9.40 1.9.41 1.9.42 1.9.43 1.9.44 1.9.45 1.9.46 1.9.5 1.9.50 1.9.51 1.9.60 1.9.62 1.9.63 All 371 releases
updraftplus / methods / googlecloud.php

googlecloud.php in UpdraftPlus: WP Backup & Migration Plugin 1.12.4, at methods/googlecloud.php

22 lines 748 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('UPDRAFTPLUS_DIR')) die('No direct access.');
4
5 if (class_exists('UpdraftPlus_BackupModule_googlecloud')) return;
6
7 if (version_compare(PHP_VERSION, '5.2.4', '>=')) {
8 require_once(UPDRAFTPLUS_DIR.'/methods/viaaddon-base.php');
9 class UpdraftPlus_BackupModule_googlecloud extends UpdraftPlus_BackupModule_ViaAddon {
10 public function __construct() {
11 parent::__construct('googlecloud', 'Google Cloud', '5.2.4', 'googlecloud.png');
12 }
13 }
14 } else {
15 require_once(UPDRAFTPLUS_DIR.'/methods/insufficient.php');
16 class UpdraftPlus_BackupModule_googlecloud extends UpdraftPlus_BackupModule_insufficientphp {
17 public function __construct() {
18 parent::__construct('googlecloud', 'Google Cloud', '5.2.4', 'googlecloud.png');
19 }
20 }
21 }
22