FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
backup-backup
/
includes
/
bodies
/
storage
Edit File: dropbox.php
<?php // Namespace namespace BMI\Plugin; use BMI\Plugin\Dashboard as Dashboard; // Exit on direct access if (!defined('ABSPATH')) { exit; } // Drop Box template add_action('bmi_pro_dropbox_template', function () { $dropbox_auth_code = get_option('bmip_dropbox_auth_code', false); $dropbox_access_token = get_transient('bmip_dropbox_access_token'); $shouldBeConnected = false; if (is_string($dropbox_access_token) && is_string($dropbox_auth_code)) { $shouldBeConnected = true; } $isEnabled = Dashboard\bmi_get_config('STORAGE::EXTERNAL::DROPBOX'); if ($isEnabled === true || $isEnabled === 'true') { $isEnabled = ' checked'; } else $isEnabled = ''; ?> <!-- External: Drop Box --> <div class="tab2-item d-flex jst-sb ia-center<?php echo (($isEnabled == ' checked') ? ' activeList' : ''); ?>"> <div class="d-flex ia-center"> <img src="<?php echo esc_url( $this->get_asset('images', 'dropbox.svg') ); ?>" alt="logo" class="tab2-img"> <span class="ml25 d-flex ia-center"> <span class="title_whereStored"><?php esc_html_e("Dropbox", 'backup-backup'); ?></span> </span> </div> <div class="ia-center"> <div class="b2 bmi-switch"><input type="checkbox" class="checkbox storage-checkbox"<?php echo esc_attr( $isEnabled ); ?> data-toggle="storage-dropbox-row" id="bmi-pro-storage-dropbox-toggle"> <div class="bmi-knobs"><span></span></div> <div class="bmi-layer_str"></div> </div> </div> </div> <div class="bg_grey storage_target" id="storage-dropbox-row"<?php echo (($isEnabled == ' checked') ? '' : ' style="display: none;"'); ?>> <?php $disabled_functions = explode(',', ini_get('disable_functions')); $vA = !in_array('curl_exec', $disabled_functions); $vB = !in_array('curl_init', $disabled_functions); if (function_exists('curl_version') && function_exists('curl_exec') && function_exists('curl_init') && $vA && $vB) { ?> <div id="dropbox-unauthenticated-box" class="container-40 lh30 pt30 pb30" <?php echo (($shouldBeConnected) ? 'style="display: none;"' : ''); ?>> <div class="d-flex"> <div class="w270" style="margin-top: 11px;"><span id="dropbox-not-authed-content-box">Current status: <b>Inactive</b></span></div> <div> <div class="w100 pos-r"> <a href="#" id="dropbox-connect-btn" class="btn"><?php esc_html_e("Connect", 'backup-backup'); ?></a> </div> </div> </div> <div class="d-flex"> <blockquote class="bmi-dropbox-info"> <?php echo wp_kses_post( sprintf( __('The plugin only requests the permissions it needs to function and can view or edit only the files it creates within the app folder—nothing else. If you’re concerned, you can set up a new, empty Dropbox account %shere%s and provide access to that.', 'backup-backup'), '<a href="https://www.dropbox.com/register" target="_blank">', '</a>' ) ); ?> </blockquote> </div> </div> <div id="dropbox-authenticated-box" class="container-40 lh30 pt30 pb30" <?php echo ((!$shouldBeConnected) ? 'style="display: none;"' : ''); ?>> <div class="d-flex"> <div class="w270" style="margin-top: 11px;"><span id="dropbox-authed-content-box">Current status: <b>Active</b></span></div> <div> <div class="w100 pos-r"> <a href="#" id="dropbox-disconnect-btn" class="btn"><?php esc_html_e("Disconnect", 'backup-backup'); ?></a> </div> </div> </div> </div> <?php } else { ?> <div class="container-40 lh30 pt30 pb30"> <div class="center"> It seem like you don't have cURL extension (PHP module) installed on your server.<br /> Without this module it's impossible to upload backups to Drop Box.<br /> If you wish to use this feature, please enable cURL module. </div> </div> <?php } ?> </div> <?php });
Save
Back