/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes
NameSizeModeActions
Backblaze/-0755rm
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
onedrive/-0755rm
pcloud/-0755rm
PEAR/-0755rm
select2/-0755rm
tether/-0755rm
tether-shepherd/-0755rm
updraftclone/-0755rm
WindowsAzure/-0755rm
azure-extensions.php33170644editdlrm
cacert.pem2080650644editdlrm
class-backup-history.php403550644editdlrm
class-commands.php488030644editdlrm
class-database-utility.php343210644editdlrm
class-filesystem-functions.php362270644editdlrm
class-http-error-descriptions.php102390644editdlrm
class-job-scheduler.php105520644editdlrm
class-manipulation-functions.php171360644editdlrm
class-onedrive-account.php15900644editdlrm
class-partialfileservlet.php70820644editdlrm
class-remote-send.php306640644editdlrm
class-search-replace.php206850644editdlrm
class-semaphore.php64240644editdlrm
class-storage-methods-interface.php186120644editdlrm
class-updraft-dashboard-news.php81370644editdlrm
class-updraft-semaphore.php76930644editdlrm
class-updraftcentral-updraftplus-commands.php18570644editdlrm
class-updraftplus-encryption.php138870644editdlrm
class-wpadmin-commands.php366460644editdlrm
class-zip.php183010644editdlrm
ftp.class.php66580644editdlrm
get-cpanel-quota-usage.pl4080644editdlrm
google-extensions.php93730644editdlrm
jquery-ui.custom-v1.11.4-2-23-4.min.css387510644editdlrm
jquery-ui.custom-v1.11.4-2-23-4.min.css.map583740644editdlrm
jquery-ui.custom-v1.11.4.css431930644editdlrm
jquery-ui.custom-v1.12.1-2-23-4.min.css404970644editdlrm
jquery-ui.custom-v1.12.1-2-23-4.min.css.map608390644editdlrm
jquery-ui.custom-v1.12.1.css450900644editdlrm
S3.php785520644editdlrm
S3compat.php319710644editdlrm
updraft-admin-common-2-23-4.min.js1521150644editdlrm
updraft-admin-common.js2512090644editdlrm
updraft-restorer-skin-compatibility.php4520644editdlrm
updraft-restorer-skin.php17230644editdlrm
updraftcentral.php27590644editdlrm
updraftplus-clone.php71360644editdlrm
updraftplus-login.php43680644editdlrm
updraftplus-notices.php214280644editdlrm
updraftplus-tour.php132950644editdlrm
updraftvault.php20400644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/updraftplus/includes/class-onedrive-account.php (1590B)
array( 'client_id' => '276d9423-7d0c-41be-a3e1-4cdad89dc36f', 'override_client_id_const_name' => 'UPDRAFTPLUS_ONEDRIVE_CLIENT_ID', 'graph_url' => 'https://graph.microsoft.com', 'api_url' => 'https://graph.microsoft.com/v1.0/', 'auth_url' => 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize', 'token_url' => 'https://login.microsoftonline.com/common/oauth2/v2.0/token', ), 'de' => array( 'client_id' => '7cc3beb4-daab-4a59-b091-c4c2319d8d2d', 'override_client_id_const_name' => 'UPDRAFTPLUS_ONEDRIVE_GERMANY_CLIENT_ID', 'graph_url' => 'https://graph.microsoft.de', 'api_url' => 'https://graph.microsoft.de/v1.0/', 'auth_url' => 'https://login.microsoftonline.de/common/oauth2/v2.0/authorize', 'token_url' => 'https://login.microsoftonline.de/common/oauth2/v2.0/token', ), ); /** * Get client id * * @param string $endpoint_tld Account type endpoint tld * @return string Client id */ public static function get_client_id($endpoint_tld = 'com') { $valid_endpoint_tlds = array_keys(self::$types); if (in_array($endpoint_tld, $valid_endpoint_tlds)) { if (defined(self::$types[$endpoint_tld]['override_client_id_const_name'])) { return constant(self::$types[$endpoint_tld]['override_client_id_const_name']); } else { return self::$types[$endpoint_tld]['client_id']; } } return ''; } }