Dropbox2
3 weeks ago
Google
3 weeks ago
blockui
3 weeks ago
checkout-embed
3 weeks ago
cloudfiles
3 weeks ago
handlebars
1 month ago
images
9 years ago
jquery-ui.dialog.extended
3 weeks ago
jquery.serializeJSON
5 years ago
jstree
1 year ago
labelauty
3 weeks ago
pcloud
3 weeks ago
select2
1 year ago
tether
6 years ago
tether-shepherd
7 years ago
updraftclone
3 weeks ago
S3.php
3 weeks ago
S3compat.php
3 weeks ago
cacert.pem
2 years ago
class-backup-history.php
1 month ago
class-commands.php
3 weeks ago
class-database-utility.php
1 month ago
class-filesystem-functions.php
1 month ago
class-http-error-descriptions.php
2 years ago
class-job-scheduler.php
3 years ago
class-manipulation-functions.php
1 month ago
class-partialfileservlet.php
3 weeks ago
class-remote-send.php
3 weeks ago
class-search-replace.php
1 month ago
class-semaphore.php
3 weeks ago
class-storage-methods-interface.php
1 month ago
class-updraft-dashboard-news.php
1 month ago
class-updraft-semaphore.php
4 years ago
class-updraftcentral-updraftplus-commands.php
3 years ago
class-updraftplus-deactivation.php
1 month ago
class-updraftplus-encryption.php
1 month ago
class-wpadmin-commands.php
1 month ago
class-zip.php
1 month ago
ftp.class.php
2 months ago
get-cpanel-quota-usage.pl
12 years ago
google-extensions.php
1 month ago
jquery-ui.custom-v1.11.4-1-26-4.min.css
3 weeks ago
jquery-ui.custom-v1.11.4-1-26-4.min.css.map
3 weeks ago
jquery-ui.custom-v1.11.4.css
3 years ago
jquery-ui.custom-v1.12.1-1-26-4.min.css
3 weeks ago
jquery-ui.custom-v1.12.1-1-26-4.min.css.map
3 weeks ago
jquery-ui.custom-v1.12.1.css
3 years ago
migrator-lite.php
1 month ago
updraft-admin-common-1-26-4.min.js
3 weeks ago
updraft-admin-common.js
3 weeks ago
updraft-restorer-skin-compatibility.php
6 years ago
updraft-restorer-skin.php
3 years ago
updraftcentral.php
1 year ago
updraftplus-clone.php
1 year ago
updraftplus-login.php
7 months ago
updraftplus-notices.php
1 month ago
updraftplus-tour.php
1 month ago
updraftvault.php
3 years ago
updraft-restorer-skin-compatibility.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | if (!defined('ABSPATH')) die('No direct access.'); |
| 4 | |
| 5 | class Updraft_Restorer_Skin extends Updraft_Restorer_Skin_Main { |
| 6 | |
| 7 | public function feedback($string, ...$args) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable, PHPCompatibility.LanguageConstructs.NewLanguageConstructs.t_ellipsisFound -- spread operator is not supported in PHP < 5.5 but WP 5.3 supports PHP 5.6 minimum |
| 8 | parent::updraft_feedback($string); |
| 9 | } |
| 10 | } |
| 11 |