/home/techb158/on-time-movers.com/wp-content/plugins/updraftplus/includes
NameSizeModeActions
blockui/-0755rm
checkout-embed/-0755rm
cloudfiles/-0755rm
Dropbox2/-0755rm
Google/-0755rm
handlebars/-0755rm
images/-0755rm
jquery-ui.dialog.extended/-0755rm
jquery.serializeJSON/-0755rm
jstree/-0755rm
labelauty/-0755rm
pcloud/-0755rm
select2/-0755rm
tether/-0755rm
tether-shepherd/-0755rm
updraftclone/-0755rm
cacert.pem2214700644editdlrm
class-backup-history.php412990644editdlrm
class-commands.php589150644editdlrm
class-database-utility.php412470644editdlrm
class-filesystem-functions.php539610644editdlrm
class-http-error-descriptions.php116690644editdlrm
class-job-scheduler.php105520644editdlrm
class-manipulation-functions.php218250644editdlrm
class-partialfileservlet.php86260644editdlrm
class-remote-send.php347890644editdlrm
class-search-replace.php215740644editdlrm
class-semaphore.php85440644editdlrm
class-storage-methods-interface.php194130644editdlrm
class-updraft-dashboard-news.php83670644editdlrm
class-updraft-semaphore.php87170644editdlrm
class-updraftcentral-updraftplus-commands.php18570644editdlrm
class-updraftplus-deactivation.php44900644editdlrm
class-updraftplus-encryption.php152270644editdlrm
class-wpadmin-commands.php432860644editdlrm
class-zip.php195200644editdlrm
ftp.class.php70820644editdlrm
get-cpanel-quota-usage.pl4080644editdlrm
google-extensions.php94970644editdlrm
jquery-ui.custom-v1.11.4-1-26-5.min.css387510644editdlrm
jquery-ui.custom-v1.11.4-1-26-5.min.css.map583740644editdlrm
jquery-ui.custom-v1.11.4.css431930644editdlrm
jquery-ui.custom-v1.12.1-1-26-5.min.css404970644editdlrm
jquery-ui.custom-v1.12.1-1-26-5.min.css.map608390644editdlrm
jquery-ui.custom-v1.12.1.css450900644editdlrm
migrator-lite.php592220644editdlrm
S3.php813240644editdlrm
S3compat.php328180644editdlrm
updraft-admin-common-1-26-5.min.js1706990644editdlrm
updraft-admin-common.js2861960644editdlrm
updraft-onboarding-1-26-5.min.js93690644editdlrm
updraft-onboarding.js249220644editdlrm
updraft-restorer-skin-compatibility.php4520644editdlrm
updraft-restorer-skin.php17230644editdlrm
updraftcentral.php34640644editdlrm
updraftplus-clone.php72370644editdlrm
updraftplus-login.php45090644editdlrm
updraftplus-notices.php189240644editdlrm
updraftplus-tour.php141370644editdlrm
updraftvault.php20400644editdlrm
Edit: /home/techb158/on-time-movers.com/wp-content/plugins/updraftplus/includes/updraftplus-clone.php (7237B)
'error', 'code' => $response->get_error_code(), 'message' => $response->get_error_message()); } else { if (isset($response['status'])) { if ('error' === $response['status']) { $response = array( 'status' => 'error', 'code' => isset($response['code']) ? $response['code'] : -1, 'message' => isset($response['message']) ? $response['message'] : $this->translate_message('generic'), 'response' => $response, ); } } else { $response = array('status' => 'error', 'message' => $this->translate_message('generic')); } } return $response; } /** * Executes login or registration process. Connects and sends request to the UpdraftClone * and returns the response coming from the server * * @internal * @param array $data The submitted form data * @param boolean $register Indicates whether the current call is for a registration process or not. Defaults to false. Currently will always be false. * @return array - The response from the request */ protected function login_or_register($data, $register = false) { $action = ($register) ? 'updraftplus_clone_register' : 'updraftplus_clone_login'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } /** * The ajax based request point of entry for the create clone process * * @param array $data - The submitted form data * * @return array - Response of the process */ public function ajax_process_clone($data = array()) { try { if (isset($data['form_data']) && is_array($data['form_data'])) { $form_data = $data['form_data']; } $response = $this->create_clone($form_data); } catch (Exception $e) { $response = array('error' => true, 'message' => $e->getMessage()); } return $response; } /** * Executes the create clone process. Connects and sends request to the UpdraftClone and returns the response coming from the server * * @internal * @param array $data - The submitted form data * @return array - The response from the request */ public function create_clone($data) { global $updraftplus, $table_prefix; $action = 'updraftplus_clone_create'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); // translators: %s: site URL with trailing slash if (empty($data['label'])) $data['label'] = sprintf(__('Clone of %s', 'updraftplus'), trailingslashit(network_site_url())); if (empty($data['install_info']['table_prefix'])) $data['install_info']['table_prefix'] = $table_prefix; $subdirectory = parse_url(network_site_url(), PHP_URL_PATH); if (empty($data['install_info']['package'])) $data['install_info']['package'] = 'starter'; if (empty($data['install_info']['subdirectory'])) $data['install_info']['subdirectory'] = !empty($subdirectory) ? $subdirectory : '/'; if (empty($data['install_info']['locale'])) $data['install_info']['locale'] = get_locale(); if (empty($data['install_info']['owner_id']) && empty($data['install_info']['owner_login'])) { $user = wp_get_current_user(); $data['install_info']['owner_id'] = $user->ID; $data['install_info']['owner_login'] = $user->user_login; } if (is_multisite()) { $data['install_info']['multisite'] = true; $data['install_info']['multisite_type'] = is_subdomain_install() ? 'subdomain' : 'subfolder'; } if (empty($data['install_info']['requested_by'])) $data['install_info']['requested_by'] = $updraftplus->version; $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } /** * Executes the clone status process. Connects and sends request to the UpdraftClone and returns the response coming from the server * * @internal * @param array $data - The submitted form data * @return array - The response from the request */ public function clone_status($data) { $action = 'updraftplus_clone_status'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } /** * Executes the clone info poll. Connects and sends request to the UpdraftClone and returns the response coming from the server * * @internal * @param array $data - The submitted form data * @return array - The response from the request */ public function clone_info_poll($data) { $action = 'updraftplus_clone_info_poll'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } /** * Executes the backup checkin. Connects and sends request to UpdraftPlus and returns the response coming from the server * * @internal * @param array $data - The submitted form data * @return array - The response from the request */ public function backup_checkin($data) { $action = 'updraftplus_backup_checkin'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); if (!empty($data['log_contents'])) { $data['log_contents'] = base64_encode(gzcompress($data['log_contents'])); $data['format'] = 'gzcompress'; } $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } /** * Executes the clone failed delete process. Connects and sends request to the UpdraftClone and returns the response coming from the server * * @internal * @param array $data - The submitted form data * @return array - The response from the request */ public function clone_failed_delete($data) { $action = 'updraftplus_clone_failed_delete'; if (empty($data['site_url'])) $data['site_url'] = trailingslashit(network_site_url()); $response = $this->send_remote_request($data, $action); return $this->parse_response($response); } }