zZzzZ.
home2
/
zrzvbdry
/
wiredsave.click
/
wp-content
/
plugins
/
updraftplus
/
addons
New Folder
Editing: morestorage.php
Save
Cancel
<?php // @codingStandardsIgnoreStart /* UpdraftPlus Addon: morestorage:Multiple storage options Description: Provides the ability to backup to multiple remote storage facilities, not just one Version: 1.3 Shop: /shop/morestorage/ Latest Change: 1.11.28 */ // @codingStandardsIgnoreEnd if (!defined('UPDRAFTPLUS_DIR')) die('No direct access allowed'); $updraftplus_addon_morestorage = new UpdraftPlus_Addon_MoreStorage; class UpdraftPlus_Addon_MoreStorage { public function __construct() { add_filter('updraftplus_storage_printoptions', array($this, 'storage_printoptions'), 10, 2); add_filter('updraftplus_storage_printoptions_multi', array($this, 'storage_printoptions_multi'), 10, 1); // add_action('updraftplus_config_print_after_storage', array($this, 'config_print_after_storage')); add_action('updraftplus_config_print_before_storage', array($this, 'config_print_before_storage'), 10, 2); add_action('updraftplus_config_print_add_multi_storage', array($this, 'config_print_add_multi_storage'), 10, 2); add_action('updraftplus_config_print_add_instance_label', array($this, 'config_print_add_instance_label'), 10, 2); add_filter('updraftplus_savestorage', array($this, 'savestorage'), 10, 2); add_action('updraftplus_after_remote_storage_heading_message', array($this, 'after_remote_storage_heading_message')); } public function after_remote_storage_heading_message() { return '<em>'.__('(as many as you like)', 'updraftplus').'</em>'; } public function admin_print_footer_scripts() { ?> <script> jQuery(document).ready(function() { jQuery('.remote-tab').click(function(event) { //Close other tabs and open the clicked one event.preventDefault(); var the_method = jQuery(this).attr('name'); updraft_remote_storage_tab_activation(the_method); }); }); </script> <?php } /** * This method will setup the HTML template that is added before each remote storage template. * * @param String $storage - the name of the remote storage method * @param Object $storage_object - the remote storage object * @return String - the HTML template */ public function config_print_before_storage($storage, $storage_object = null) { global $updraftplus; ?> <tr class="<?php echo is_object($storage_object) ? $storage_object->get_css_classes() . ' ' . $storage . '_updraft_remote_storage_border' : "updraftplusmethod $storage";?>"> <th> <?php if (is_object($storage_object) && $storage_object->supports_feature('multi_storage')) { ?> <h3 class="updraft_edit_label_instance" data-instance_id="{{instance_id}}" data-method="<?php echo $storage; ?>">{{instance_label}}<span class="dashicons dashicons-edit"></span></h3> <?php } else { ?> <h3><?php echo $updraftplus->backup_methods[$storage]; ?></h3> <?php } ?> </th> <td> <?php if (is_object($storage_object) && $storage_object->supports_feature('multi_storage')) { ?> <div class="updraft_multi_storage_options"> <input type="checkbox" class="updraft_instance_toggle" id="<?php echo 'updraft_' . $storage . '_instance_enabled' . '_{{instance_id}}';?>" name="<?php echo 'updraft_' . $storage . '[settings][{{instance_id}}][instance_enabled]';?>" value="1" {{#ifeq "1" instance_enabled}} checked="checked"{{/ifeq}}> <label for="<?php echo 'updraft_' . $storage . '_instance_enabled' . '_{{instance_id}}';?>" class="updraft_toggle_instance_label">{{#ifeq "1" instance_enabled}}<?php echo __('Currently enabled', 'updraftplus'); ?>{{else}} <?php echo __('Currently disabled', 'updraftplus'); ?>{{/ifeq}}</label> </div> <a href="<?php echo UpdraftPlus::get_current_clean_url();?>" class="updraft_multi_storage_options updraft_delete_instance" data-instance_id="{{instance_id}}" data-method="<?php echo $storage; ?>"><?php echo __('Delete these settings', 'updraftplus'); ?></a> <?php } ?> </td> </tr> <?php } /** * This method will setup the HTML template for the add instance button * * @param String $storage - the name of the remote storage method * @param Object $storage_object - the remote storage object * @return String - the HTML template */ public function config_print_add_multi_storage($storage, $storage_object = null) { global $updraftplus; ?><tr class="<?php echo is_object($storage_object) ? $storage_object->get_css_classes(false) . " " . "$storage" . "_add_instance_container" : "updraftplusmethod $storage";?>"> <td colspan="2"> <a href="<?php echo UpdraftPlus::get_current_clean_url(); ?>" class="updraft_add_instance" data-method="<?php echo $storage; ?>"><?php echo sprintf(__('Add another %s account...', 'updraftplus'), $updraftplus->backup_methods[$storage]); ?></a> </td> </tr> <?php } /** * This method will setup the HTML template for the instance label setting * * @param String $storage - the name of the remote storage method * @param Object $storage_object - the remote storage object * @return String - the HTML template */ public function config_print_add_instance_label($storage, $storage_object) { ?> <input type="hidden" class="<?php echo is_object($storage_object) ? $storage_object->get_css_classes() : "updraftplusmethod $storage";?>" <?php is_object($storage_object) ? $storage_object->output_settings_field_name_and_id('instance_label') . ' ' . $storage . '_updraft_instance_label' : ''; ?> value="{{instance_label}}" /> <?php } public function savestorage($rinput, $input) { return $input; } public function storage_printoptions_multi() { return 'multi'; } public function storage_printoptions($ret, $active_service) {// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.Found global $updraftplus; add_action('admin_print_footer_scripts', array($this, 'admin_print_footer_scripts')); ?> </div></td></tr> <tr> <th colspan="2"><h2 class="updraft_settings_sectionheading"><?php _e('Remote Storage Options', 'updraftplus');?></h2> </tr> <tr id="remote_storage_tabs" style="border-bottom: 1px solid #ccc"> <td colspan="2" style="padding:0px"> <?php foreach ($updraftplus->backup_methods as $method => $description) { echo "<a class=\"nav-tab remote-tab updraft-hidden remote-tab-$method\" id=\"remote-tab-$method\" name=\"$method\" href=\"#\" "; // if ((!is_array($active_service) && $active_service !== $method) || !(is_array($active_service) && in_array($method, $active_service))) echo 'style="display:none;"'; echo 'style="display:none;"'; echo ">".htmlspecialchars($description)."</a>\n"; } ?> <?php return true; } }