/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/addons
NameSizeModeActions
anonymisation.php152630644editdlrm
autobackup.php524980644editdlrm
cloudfiles-enhanced.php167210644editdlrm
dropbox-folders.php42830644editdlrm
fixtime.php267240644editdlrm
google-enhanced.php70330644editdlrm
importer.php147680644editdlrm
incremental.php213390644editdlrm
lockadmin.php111680644editdlrm
migrator.php893260644editdlrm
moredatabase.php288570644editdlrm
morefiles.php565070644editdlrm
morestorage.php147310644editdlrm
multisite.php374030644editdlrm
noadverts.php3530644editdlrm
pcloud.php264860644editdlrm
reporting.php281050644editdlrm
s3-enhanced.php268840644editdlrm
sftp.php458490644editdlrm
webdav.php504300644editdlrm
wp-cli.php463930644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/updraftplus/addons/dropbox-folders.php (4283B)
partial_template_name }}) * * @param Array $partial_templates A collection of filterable partial templates * @return Array an associative array keyed by name of the partial templates */ public static function get_partial_templates($partial_templates) { if (!isset($partial_templates['dropbox_additional_configuration_top'])) $partial_templates['dropbox_additional_configuration_top'] = ''; $partial_templates['dropbox_additional_configuration_top'] = self::get_configuration_template(); return $partial_templates; } /** * This method is hooked to a filter and going to be accessed by any code within WordPress environment, so instead of sanitising each value in this method and/or using any other technique to prevent XSS attacks, just make sure each partial template has all variables escaped */ public static function get_partial_template_properties() { return array( 'input_store_at_label' => __('Store at', 'updraftplus'), ); } /** * Returns the Dropbox Folders addon HTML content to be displayed on the page * * @return [string] - the premium HTML content that will be displayed on the page */ private static function get_configuration_template() { ob_start(); ?> {{input_store_at_label}}: {{folder_path}} get_options(); $folder = empty($opts['folder']) ? '' : $opts['folder']; $dropbox_folder = trailingslashit($folder); return ('/' == $dropbox_folder || './' == $dropbox_folder) ? $file : $dropbox_folder.$file; } }