PluginProbe ʕ •ᴥ•ʔ
WPvivid — Backup, Migration & Staging / 0.9.73
WPvivid — Backup, Migration & Staging v0.9.73
0.9.129 0.9.128 0.9.127 0.9.126 0.9.33 0.9.34 0.9.35 0.9.36 0.9.37 0.9.38 0.9.39 0.9.4 0.9.40 0.9.41 0.9.42 0.9.43 0.9.44 0.9.45 0.9.46 0.9.47 0.9.48 0.9.49 0.9.5 0.9.50 0.9.51 0.9.52 0.9.53 0.9.54 0.9.55 0.9.56 0.9.57 0.9.58 0.9.59 0.9.6 0.9.60 0.9.61 0.9.62 0.9.63 0.9.64 0.9.65 0.9.66 0.9.67 0.9.68 0.9.69 0.9.7 0.9.70 0.9.71 0.9.72 0.9.73 0.9.74 0.9.75 0.9.76 0.9.77 0.9.78 0.9.79 0.9.8 0.9.80 0.9.81 0.9.82 0.9.83 0.9.84 0.9.85 0.9.86 0.9.87 0.9.88 0.9.89 0.9.9 0.9.90 0.9.91 0.9.92 0.9.93 0.9.94 0.9.95 0.9.96 0.9.97 0.9.98 0.9.99 trunk 0.9.1 0.9.10 0.9.100 0.9.101 0.9.102 0.9.103 0.9.104 0.9.105 0.9.106 0.9.107 0.9.108 0.9.109 0.9.11 0.9.110 0.9.111 0.9.112 0.9.113 0.9.114 0.9.115 0.9.116 0.9.117 0.9.118 0.9.119 0.9.12 0.9.120 0.9.121 0.9.122 0.9.123 0.9.124 0.9.125 0.9.13 0.9.14 0.9.15 0.9.16 0.9.17 0.9.18 0.9.19 0.9.2 0.9.20 0.9.21 0.9.22 0.9.23 0.9.24 0.9.25 0.9.26 0.9.27 0.9.28 0.9.29 0.9.3 0.9.30 0.9.31 0.9.32
wpvivid-backuprestore / includes / customclass / class-wpvivid-remote-default.php
wpvivid-backuprestore / includes / customclass Last commit date
class-wpvivid-amazons3-plus.php 3 years ago class-wpvivid-base-dropbox.php 3 years ago class-wpvivid-base-s3.php 5 years ago class-wpvivid-dropbox.php 3 years ago class-wpvivid-extend-sftp.php 7 years ago class-wpvivid-ftpclass.php 3 years ago class-wpvivid-google-drive.php 3 years ago class-wpvivid-one-drive.php 3 years ago class-wpvivid-remote-default.php 6 years ago class-wpvivid-remote.php 7 years ago class-wpvivid-s3.php 5 years ago class-wpvivid-s3compat.php 3 years ago class-wpvivid-send-to-site.php 6 years ago class-wpvivid-sftpclass.php 3 years ago client_secrets.json 7 years ago
class-wpvivid-remote-default.php
42 lines
1 <?php
2 if (!defined('WPVIVID_PLUGIN_DIR')){
3 die;
4 }
5
6 if(!defined('WPVIVID_UPLOAD_SUCCESS'))
7 {
8 define('WPVIVID_UPLOAD_SUCCESS',1);
9 }
10
11 if(!defined('WPVIVID_UPLOAD_FAILED'))
12 {
13 define('WPVIVID_UPLOAD_FAILED',2);
14 }
15
16 if(!defined('WPVIVID_UPLOAD_UNDO'))
17 {
18 define('WPVIVID_UPLOAD_UNDO',0);
19 }
20
21 require_once WPVIVID_PLUGIN_DIR .'/includes/customclass/class-wpvivid-remote.php';
22 class WPvivid_Remote_Defult extends WPvivid_Remote{
23 public function test_connect()
24 {
25 return array('result' => WPVIVID_FAILED,'error'=> 'Type incorrect.');
26 }
27
28 public function upload($task_id, $files, $callback = '')
29 {
30 return array('result' => WPVIVID_FAILED,'error'=> 'Type incorrect.');
31 }
32
33 public function download( $file, $local_path, $callback = '')
34 {
35 return array('result' => WPVIVID_FAILED,'error'=> 'Type incorrect.');
36 }
37
38 public function cleanup($files)
39 {
40 return array('result' => WPVIVID_FAILED,'error'=> 'Type incorrect.');
41 }
42 }