2004-09-11 18:12:40 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Themes administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2020-02-06 07:33:11 +01:00
require_once __DIR__ . '/admin.php' ;
2010-12-16 09:43:22 +01:00
2015-09-02 20:45:21 +02:00
if ( ! current_user_can ( 'switch_themes' ) && ! current_user_can ( 'edit_theme_options' ) ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'You need a higher level of permission.' ) . '</h1>' .
2016-06-29 17:16:29 +02:00
'<p>' . __ ( 'Sorry, you are not allowed to edit theme options on this site.' ) . '</p>' ,
2015-09-02 20:45:21 +02:00
403
);
}
2010-12-13 22:21:50 +01:00
2017-12-01 00:11:00 +01:00
if ( current_user_can ( 'switch_themes' ) && isset ( $_GET [ 'action' ] ) ) {
2020-05-16 20:42:12 +02:00
if ( 'activate' === $_GET [ 'action' ] ) {
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'switch-theme_' . $_GET [ 'stylesheet' ] );
2012-06-06 22:34:24 +02:00
$theme = wp_get_theme ( $_GET [ 'stylesheet' ] );
2015-09-02 20:45:21 +02:00
if ( ! $theme -> exists () || ! $theme -> is_allowed () ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'Something went wrong.' ) . '</h1>' .
2015-09-02 20:45:21 +02:00
'<p>' . __ ( 'The requested theme does not exist.' ) . '</p>' ,
403
);
}
2012-06-26 07:21:04 +02:00
switch_theme ( $theme -> get_stylesheet () );
2017-12-01 00:11:00 +01:00
wp_redirect ( admin_url ( 'themes.php?activated=true' ) );
2005-09-06 01:33:10 +02:00
exit ;
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
} elseif ( 'resume' === $_GET [ 'action' ] ) {
check_admin_referer ( 'resume-theme_' . $_GET [ 'stylesheet' ] );
$theme = wp_get_theme ( $_GET [ 'stylesheet' ] );
if ( ! current_user_can ( 'resume_theme' , $_GET [ 'stylesheet' ] ) ) {
wp_die (
'<h1>' . __ ( 'You need a higher level of permission.' ) . '</h1>' .
'<p>' . __ ( 'Sorry, you are not allowed to resume this theme.' ) . '</p>' ,
403
);
}
$result = resume_theme ( $theme -> get_stylesheet (), self_admin_url ( 'themes.php?error=resuming' ) );
if ( is_wp_error ( $result ) ) {
wp_die ( $result );
}
wp_redirect ( admin_url ( 'themes.php?resumed=true' ) );
exit ;
2020-05-16 20:42:12 +02:00
} elseif ( 'delete' === $_GET [ 'action' ] ) {
2017-12-01 00:11:00 +01:00
check_admin_referer ( 'delete-theme_' . $_GET [ 'stylesheet' ] );
2012-06-06 22:34:24 +02:00
$theme = wp_get_theme ( $_GET [ 'stylesheet' ] );
2015-09-02 20:45:21 +02:00
if ( ! current_user_can ( 'delete_themes' ) ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'You need a higher level of permission.' ) . '</h1>' .
2016-06-29 17:16:29 +02:00
'<p>' . __ ( 'Sorry, you are not allowed to delete this item.' ) . '</p>' ,
2015-09-02 20:45:21 +02:00
403
);
}
if ( ! $theme -> exists () ) {
wp_die (
2018-02-19 03:13:32 +01:00
'<h1>' . __ ( 'Something went wrong.' ) . '</h1>' .
2015-09-02 20:45:21 +02:00
'<p>' . __ ( 'The requested theme does not exist.' ) . '</p>' ,
403
);
}
2014-12-02 03:21:24 +01:00
$active = wp_get_theme ();
2022-01-08 02:22:02 +01:00
if ( $active -> get ( 'Template' ) === $_GET [ 'stylesheet' ] ) {
2014-12-02 03:21:24 +01:00
wp_redirect ( admin_url ( 'themes.php?delete-active-child=true' ) );
} else {
delete_theme ( $_GET [ 'stylesheet' ] );
wp_redirect ( admin_url ( 'themes.php?deleted=true' ) );
}
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
exit ;
} elseif ( 'enable-auto-update' === $_GET [ 'action' ] ) {
if ( ! ( current_user_can ( 'update_themes' ) && wp_is_auto_update_enabled_for_type ( 'theme' ) ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to enable themes automatic updates.' ) );
}
check_admin_referer ( 'updates' );
$all_items = wp_get_themes ();
$auto_updates = ( array ) get_site_option ( 'auto_update_themes' , array () );
$auto_updates [] = $_GET [ 'stylesheet' ];
$auto_updates = array_unique ( $auto_updates );
// Remove themes that have been deleted since the site option was last updated.
$auto_updates = array_intersect ( $auto_updates , array_keys ( $all_items ) );
update_site_option ( 'auto_update_themes' , $auto_updates );
wp_redirect ( admin_url ( 'themes.php?enabled-auto-update=true' ) );
exit ;
} elseif ( 'disable-auto-update' === $_GET [ 'action' ] ) {
if ( ! ( current_user_can ( 'update_themes' ) && wp_is_auto_update_enabled_for_type ( 'theme' ) ) ) {
wp_die ( __ ( 'Sorry, you are not allowed to disable themes automatic updates.' ) );
}
check_admin_referer ( 'updates' );
$all_items = wp_get_themes ();
$auto_updates = ( array ) get_site_option ( 'auto_update_themes' , array () );
$auto_updates = array_diff ( $auto_updates , array ( $_GET [ 'stylesheet' ] ) );
// Remove themes that have been deleted since the site option was last updated.
$auto_updates = array_intersect ( $auto_updates , array_keys ( $all_items ) );
update_site_option ( 'auto_update_themes' , $auto_updates );
wp_redirect ( admin_url ( 'themes.php?disabled-auto-update=true' ) );
2009-03-05 20:15:56 +01:00
exit ;
2004-09-11 18:12:40 +02:00
}
2005-09-06 01:33:10 +02:00
}
2004-09-11 18:12:40 +02:00
2021-07-22 15:53:00 +02:00
// Used in the HTML title tag.
2022-01-10 00:14:04 +01:00
$title = __ ( 'Themes' );
2006-11-18 08:31:29 +01:00
$parent_file = 'themes.php' ;
2008-05-20 19:19:33 +02:00
2020-01-29 01:45:18 +01:00
// Help tab: Overview.
2013-12-02 04:23:10 +01:00
if ( current_user_can ( 'switch_themes' ) ) {
2017-12-01 00:11:00 +01:00
$help_overview = '<p>' . __ ( 'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.' ) . '</p>' .
2013-12-02 04:23:10 +01:00
'<p>' . __ ( 'From this screen you can:' ) . '</p>' .
'<ul><li>' . __ ( 'Hover or tap to see Activate and Live Preview buttons' ) . '</li>' .
'<li>' . __ ( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' .
2022-01-15 09:44:03 +01:00
'<li>' . __ ( 'Click Customize for the active theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
'<p>' . __ ( 'The active theme is displayed highlighted as the first theme.' ) . '</p>' .
2015-04-03 04:32:28 +02:00
'<p>' . __ ( 'The search for installed themes will search for terms in their name, description, author, or tag.' ) . ' <span id="live-search-desc">' . __ ( 'The search results will be updated as you type.' ) . '</span></p>' ;
2010-06-02 22:04:07 +02:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' => $help_overview ,
)
);
2020-01-29 01:45:18 +01:00
} // End if 'switch_themes'.
2011-11-29 18:34:08 +01:00
2020-01-29 01:45:18 +01:00
// Help tab: Adding Themes.
2011-11-29 18:34:08 +01:00
if ( current_user_can ( 'install_themes' ) ) {
if ( is_multisite () ) {
2017-12-01 00:11:00 +01:00
$help_install = '<p>' . __ ( 'Installing themes on Multisite can only be done from the Network Admin section.' ) . '</p>' ;
2011-11-29 18:34:08 +01:00
} else {
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
$help_install = '<p>' . sprintf (
/* translators: %s: https://wordpress.org/themes/ */
2023-09-05 21:26:26 +02:00
__ ( 'If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the <a href="%s">WordPress Theme Directory</a>. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!' ),
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
__ ( 'https://wordpress.org/themes/' )
) . '</p>' ;
2011-11-29 18:34:08 +01:00
}
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'adding-themes' ,
'title' => __ ( 'Adding Themes' ),
'content' => $help_install ,
)
);
2020-01-29 01:45:18 +01:00
} // End if 'install_themes'.
2012-06-06 22:34:24 +02:00
2020-01-29 01:45:18 +01:00
// Help tab: Previewing and Customizing.
2014-07-14 21:01:16 +02:00
if ( current_user_can ( 'edit_theme_options' ) && current_user_can ( 'customize' ) ) {
2012-05-07 19:26:16 +02:00
$help_customize =
2017-12-01 00:11:00 +01:00
'<p>' . __ ( 'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.' ) . '</p>' .
2021-01-17 18:01:08 +01:00
'<p>' . __ ( 'The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.' ) . '</p>' .
2013-12-02 04:23:10 +01:00
'<p>' . __ ( 'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.' ) . '</p>' ;
2012-05-09 03:38:54 +02:00
2017-12-01 00:11:00 +01:00
get_current_screen () -> add_help_tab (
array (
'id' => 'customize-preview-themes' ,
'title' => __ ( 'Previewing and Customizing' ),
'content' => $help_customize ,
)
);
2020-01-29 01:45:18 +01:00
} // End if 'edit_theme_options' && 'customize'.
2009-05-11 20:59:09 +02:00
2020-06-16 19:29:07 +02:00
$help_sidebar_autoupdates = '' ;
2020-06-19 23:14:08 +02:00
// Help tab: Auto-updates.
2020-06-16 19:29:07 +02:00
if ( current_user_can ( 'update_themes' ) && wp_is_auto_update_enabled_for_type ( 'theme' ) ) {
$help_tab_autoupdates =
'<p>' . __ ( 'Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.' ) . '</p>' .
'<p>' . __ ( 'Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.' ) . '</p>' ;
get_current_screen () -> add_help_tab (
array (
'id' => 'plugins-themes-auto-updates' ,
'title' => __ ( 'Auto-updates' ),
'content' => $help_tab_autoupdates ,
)
);
2023-02-23 11:38:21 +01:00
$help_sidebar_autoupdates = '<p>' . __ ( '<a href="https://wordpress.org/documentation/article/plugins-themes-auto-updates/">Documentation on Auto-updates</a>' ) . '</p>' ;
2020-06-16 19:29:07 +02:00
} // End if 'update_themes' && 'wp_is_auto_update_enabled_for_type'.
2011-11-02 21:14:10 +01:00
get_current_screen () -> set_help_sidebar (
2013-12-02 19:58:09 +01:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
2023-02-23 12:06:19 +01:00
'<p>' . __ ( '<a href="https://wordpress.org/documentation/article/work-with-themes/">Documentation on Using Themes</a>' ) . '</p>' .
2023-02-23 11:38:21 +01:00
'<p>' . __ ( '<a href="https://wordpress.org/documentation/article/appearance-themes-screen/">Documentation on Managing Themes</a>' ) . '</p>' .
2020-06-19 23:14:08 +02:00
$help_sidebar_autoupdates .
2023-02-23 11:38:21 +01:00
'<p>' . __ ( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
2011-11-02 04:12:37 +01:00
);
2013-11-13 21:58:05 +01:00
if ( current_user_can ( 'switch_themes' ) ) {
$themes = wp_prepare_themes_for_js ();
} else {
$themes = wp_prepare_themes_for_js ( array ( wp_get_theme () ) );
}
2013-12-07 04:11:10 +01:00
wp_reset_vars ( array ( 'theme' , 'search' ) );
2013-11-13 21:58:05 +01:00
2017-12-01 00:11:00 +01:00
wp_localize_script (
2018-08-17 03:51:36 +02:00
'theme' ,
'_wpThemeSettings' ,
array (
2017-12-01 00:11:00 +01:00
'themes' => $themes ,
'settings' => array (
'canInstall' => ( ! is_multisite () && current_user_can ( 'install_themes' ) ),
'installURI' => ( ! is_multisite () && current_user_can ( 'install_themes' ) ) ? admin_url ( 'theme-install.php' ) : null ,
'confirmDelete' => __ ( " Are you sure you want to delete this theme? \n \n Click 'Cancel' to go back, 'OK' to confirm the delete. " ),
'adminUrl' => parse_url ( admin_url (), PHP_URL_PATH ),
),
'l10n' => array (
'addNew' => __ ( 'Add New Theme' ),
'search' => __ ( 'Search Installed Themes' ),
2020-01-29 01:45:18 +01:00
'searchPlaceholder' => __ ( 'Search installed themes...' ), // Placeholder (no ellipsis).
2019-09-03 02:41:05 +02:00
/* translators: %d: Number of themes. */
2017-12-01 00:11:00 +01:00
'themesFound' => __ ( 'Number of Themes found: %d' ),
'noThemesFound' => __ ( 'No themes found. Try a different search.' ),
),
)
);
2013-11-13 21:58:05 +01:00
2013-11-20 03:57:10 +01:00
add_thickbox ();
2010-09-24 20:50:31 +02:00
wp_enqueue_script ( 'theme' );
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
wp_enqueue_script ( 'updates' );
2008-05-20 19:19:33 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-header.php' ;
2004-09-11 18:12:40 +02:00
?>
2005-09-06 01:33:10 +02:00
2013-11-20 20:44:12 +01:00
< div class = " wrap " >
2016-12-07 00:12:41 +01:00
< h1 class = " wp-heading-inline " >< ? php esc_html_e ( 'Themes' ); ?>
2017-10-09 18:04:48 +02:00
< span class = " title-count theme-count " >< ? php echo ! empty ( $_GET [ 'search' ] ) ? __ ( '…' ) : count ( $themes ); ?> </span>
2016-12-07 00:12:41 +01:00
</ h1 >
2013-11-13 21:58:05 +01:00
< ? php if ( ! is_multisite () && current_user_can ( 'install_themes' ) ) : ?>
2023-09-05 21:26:26 +02:00
< a href = " <?php echo esc_url( admin_url( 'theme-install.php' ) ); ?> " class = " hide-if-no-js page-title-action " >< ? php echo esc_html__ ( 'Add New Theme' ); ?> </a>
2013-11-13 21:58:05 +01:00
< ? php endif ; ?>
2016-12-07 00:12:41 +01:00
2017-05-08 17:59:44 +02:00
< form class = " search-form " ></ form >
2016-12-07 00:12:41 +01:00
< hr class = " wp-header-end " >
2012-04-11 23:19:32 +02:00
< ? php
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
if ( ! validate_current_theme () || isset ( $_GET [ 'broken' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'The active theme is broken. Reverting to the default theme.' ),
array (
'id' => 'message1' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
} elseif ( isset ( $_GET [ 'activated' ] ) ) {
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'previewed' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
2023-10-08 19:56:24 +02:00
__ ( 'Settings saved and theme activated.' ) . ' <a href="' . esc_url ( home_url ( '/' ) ) . '">' . __ ( 'Visit site' ) . '</a>' ,
2023-09-14 04:15:17 +02:00
array (
'id' => 'message2' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
} else {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
2023-10-08 19:56:24 +02:00
__ ( 'New theme activated.' ) . ' <a href="' . esc_url ( home_url ( '/' ) ) . '">' . __ ( 'Visit site' ) . '</a>' ,
2023-09-14 04:15:17 +02:00
array (
'id' => 'message2' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
}
} elseif ( isset ( $_GET [ 'deleted' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'Theme deleted.' ),
array (
'id' => 'message3' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
} elseif ( isset ( $_GET [ 'delete-active-child' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'You cannot delete a theme while it has an active child theme.' ),
array (
'id' => 'message4' ,
'additional_classes' => array ( 'error' ),
)
);
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
} elseif ( isset ( $_GET [ 'resumed' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'Theme resumed.' ),
array (
'id' => 'message5' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
} elseif ( isset ( $_GET [ 'error' ] ) && 'resuming' === $_GET [ 'error' ] ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'Theme could not be resumed because it triggered a <strong>fatal error</strong>.' ),
array (
'id' => 'message6' ,
'additional_classes' => array ( 'error' ),
)
);
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
} elseif ( isset ( $_GET [ 'enabled-auto-update' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'Theme will be auto-updated.' ),
array (
'id' => 'message7' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
} elseif ( isset ( $_GET [ 'disabled-auto-update' ] ) ) {
2023-09-14 04:15:17 +02:00
wp_admin_notice (
__ ( 'Theme will no longer be auto-updated.' ),
array (
'id' => 'message8' ,
'additional_classes' => array ( 'updated' ),
'dismissible' => true ,
)
);
Bootstrap/Load: Introduce fatal error recovery mechanism allowing users to still log in to their admin dashboard.
This changeset introduces a `WP_Shutdown_Handler` class that detects fatal errors and which extension (plugin or theme) causes them. Such an error is then recorded, and an error message is displayed. Subsequently, in certain protected areas, for example the admin, the broken extension will be paused, ensuring that the website is still usable in the respective area. The major benefit is that this mechanism allows site owners to still log in to their website, to fix the problem by either disabling the extension or solving the bug and then resuming the extension.
Extensions are only paused in certain designated areas. The frontend for example stays unaffected, as it is impossible to know what pausing the extension would cause to be missing, so it might be preferrable to clearly see that the website is temporarily not accessible instead.
The fatal error recovery is especially important in scope of encouraging the switch to a maintained PHP version, as not necessarily every WordPress extension is compatible with all PHP versions. If problems occur now, non-technical site owners that do not have immediate access to the codebase are not locked out of their site and can at least temporarily solve the problem quickly.
Websites that have custom requirements in that regard can implement their own shutdown handler by adding a `shutdown-handler.php` drop-in that returns the handler instance to use, which must be based on a class that inherits `WP_Shutdown_Handler`. That handler will then be used in place of the default one.
Websites that would like to modify specifically the error template displayed in the frontend can add a `php-error.php` drop-in that works similarly to the existing `db-error.php` drop-in.
Props afragen, bradleyt, flixos90, ocean90, schlessera, SergeyBiryukov, spacedmonkey.
Fixes #44458.
Built from https://develop.svn.wordpress.org/trunk@44524
git-svn-id: http://core.svn.wordpress.org/trunk@44355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-01-09 21:05:49 +01:00
}
2012-04-11 23:19:32 +02:00
2021-04-10 14:01:10 +02:00
$current_theme = wp_get_theme ();
2012-04-11 23:19:32 +02:00
2021-04-10 14:01:10 +02:00
if ( $current_theme -> errors () && ( ! is_multisite () || current_user_can ( 'manage_network_themes' ) ) ) {
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
wp_admin_notice (
__ ( 'Error:' ) . ' ' . $current_theme -> errors () -> get_error_message (),
array (
'additional_classes' => array ( 'error' ),
)
);
2013-10-02 22:50:09 +02:00
}
2021-04-09 13:49:05 +02:00
$current_theme_actions = array ();
2013-10-02 22:50:09 +02:00
2017-12-01 00:11:00 +01:00
if ( is_array ( $submenu ) && isset ( $submenu [ 'themes.php' ] ) ) {
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
$forbidden_paths = array (
'themes.php' ,
'theme-editor.php' ,
'site-editor.php' ,
'edit.php?post_type=wp_navigation' ,
);
2017-12-01 00:11:00 +01:00
foreach ( ( array ) $submenu [ 'themes.php' ] as $item ) {
$class = '' ;
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
if ( in_array ( $item [ 2 ], $forbidden_paths , true ) || str_starts_with ( $item [ 2 ], 'customize.php' ) ) {
2017-12-01 00:11:00 +01:00
continue ;
}
2022-01-08 02:22:02 +01:00
2020-01-29 01:45:18 +01:00
// 0 = name, 1 = capability, 2 = file.
2022-01-08 02:22:02 +01:00
if ( 0 === strcmp ( $self , $item [ 2 ] ) && empty ( $parent_file )
|| $parent_file && $item [ 2 ] === $parent_file
) {
2017-12-01 00:11:00 +01:00
$class = ' current' ;
}
2022-01-08 02:22:02 +01:00
2017-12-01 00:11:00 +01:00
if ( ! empty ( $submenu [ $item [ 2 ] ] ) ) {
$submenu [ $item [ 2 ] ] = array_values ( $submenu [ $item [ 2 ] ] ); // Re-index.
$menu_hook = get_plugin_page_hook ( $submenu [ $item [ 2 ] ][ 0 ][ 2 ], $item [ 2 ] );
2022-01-08 02:22:02 +01:00
2017-12-01 00:11:00 +01:00
if ( file_exists ( WP_PLUGIN_DIR . " / { $submenu [ $item [ 2 ]][ 0 ][ 2 ] } " ) || ! empty ( $menu_hook ) ) {
$current_theme_actions [] = " <a class='button $class ' href='admin.php?page= { $submenu [ $item [ 2 ]][ 0 ][ 2 ] } '> { $item [ 0 ] } </a> " ;
} else {
$current_theme_actions [] = " <a class='button $class ' href=' { $submenu [ $item [ 2 ]][ 0 ][ 2 ] } '> { $item [ 0 ] } </a> " ;
}
} elseif ( ! empty ( $item [ 2 ] ) && current_user_can ( $item [ 1 ] ) ) {
$menu_file = $item [ 2 ];
if ( current_user_can ( 'customize' ) ) {
if ( 'custom-header' === $menu_file ) {
$current_theme_actions [] = " <a class='button hide-if-no-customize $class ' href='customize.php?autofocus[control]=header_image'> { $item [ 0 ] } </a> " ;
} elseif ( 'custom-background' === $menu_file ) {
$current_theme_actions [] = " <a class='button hide-if-no-customize $class ' href='customize.php?autofocus[control]=background_image'> { $item [ 0 ] } </a> " ;
2014-12-08 23:23:23 +01:00
}
2017-12-01 00:11:00 +01:00
}
2014-12-08 23:23:23 +01:00
2019-07-01 14:52:01 +02:00
$pos = strpos ( $menu_file , '?' );
if ( false !== $pos ) {
2017-12-01 00:11:00 +01:00
$menu_file = substr ( $menu_file , 0 , $pos );
}
2014-12-08 23:23:23 +01:00
2017-12-01 00:11:00 +01:00
if ( file_exists ( ABSPATH . " wp-admin/ $menu_file " ) ) {
$current_theme_actions [] = " <a class='button $class ' href=' { $item [ 2 ] } '> { $item [ 0 ] } </a> " ;
} else {
$current_theme_actions [] = " <a class='button $class ' href='themes.php?page= { $item [ 2 ] } '> { $item [ 0 ] } </a> " ;
2010-09-22 19:23:38 +02:00
}
}
}
2017-12-01 00:11:00 +01:00
}
2013-12-02 19:58:09 +01:00
2017-10-09 18:04:48 +02:00
$class_name = 'theme-browser' ;
if ( ! empty ( $_GET [ 'search' ] ) ) {
$class_name .= ' search-loading' ;
}
?>
< div class = " <?php echo esc_attr( $class_name ); ?> " >
2016-01-12 18:13:29 +01:00
< div class = " themes wp-clearfix " >
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
< ? php
/*
* This PHP is synchronized with the tmpl - theme template below !
*/
2014-01-22 22:00:11 +01:00
foreach ( $themes as $theme ) :
2021-11-05 18:58:57 +01:00
$aria_action = $theme [ 'id' ] . '-action' ;
$aria_name = $theme [ 'id' ] . '-name' ;
2017-11-23 05:09:49 +01:00
$active_class = '' ;
if ( $theme [ 'active' ] ) {
$active_class = ' active' ;
}
2014-01-22 22:00:11 +01:00
?>
2021-06-08 01:10:57 +02:00
< div class = " theme<?php echo $active_class ; ?> " >
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
< ? php if ( ! empty ( $theme [ 'screenshot' ][ 0 ] ) ) { ?>
< div class = " theme-screenshot " >
2022-03-18 14:44:03 +01:00
< img src = " <?php echo esc_url( $theme['screenshot'] [0] . '?ver=' . $theme['version'] ); ?> " alt = " " />
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
</ div >
< ? php } else { ?>
< div class = " theme-screenshot blank " ></ div >
< ? php } ?>
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< ? php if ( $theme [ 'hasUpdate' ] ) : ?>
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
< ? php
if ( $theme [ 'updateResponse' ][ 'compatibleWP' ] && $theme [ 'updateResponse' ][ 'compatiblePHP' ] ) :
if ( $theme [ 'hasPackage' ] ) {
$new_version_available = __ ( 'New version available. <button class="button-link" type="button">Update now</button>' );
} else {
$new_version_available = __ ( 'New version available.' );
}
wp_admin_notice (
$new_version_available ,
array (
'type' => 'warning' ,
'additional_classes' => array ( 'notice-alt' , 'inline' , 'update-message' ),
)
);
else :
$theme_update_error = '' ;
if ( ! $theme [ 'updateResponse' ][ 'compatibleWP' ] && ! $theme [ 'updateResponse' ][ 'compatiblePHP' ] ) {
$theme_update_error .= sprintf (
/* translators: %s: Theme name. */
__ ( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
$theme [ 'name' ]
);
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
$theme_update_error .= sprintf (
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
2020-07-28 13:31:01 +02:00
);
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
} elseif ( current_user_can ( 'update_core' ) ) {
$theme_update_error .= sprintf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
2020-07-28 13:31:01 +02:00
);
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
} elseif ( current_user_can ( 'update_php' ) ) {
$theme_update_error .= sprintf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
2020-07-28 13:31:01 +02:00
);
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
2020-07-28 02:09:02 +02:00
}
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
} elseif ( ! $theme [ 'updateResponse' ][ 'compatibleWP' ] ) {
$theme_update_error .= sprintf (
/* translators: %s: Theme name. */
__ ( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
$theme [ 'name' ]
);
if ( current_user_can ( 'update_core' ) ) {
$theme_update_error .= sprintf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
} elseif ( ! $theme [ 'updateResponse' ][ 'compatiblePHP' ] ) {
$theme_update_error .= sprintf (
/* translators: %s: Theme name. */
__ ( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
$theme [ 'name' ]
);
if ( current_user_can ( 'update_php' ) ) {
$theme_update_error .= sprintf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
}
}
wp_admin_notice (
$theme_update_error ,
array (
'type' => 'error' ,
'additional_classes' => array ( 'notice-alt' , 'inline' , 'update-message' ),
)
);
endif ;
endif ;
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
2020-07-27 17:21:02 +02:00
if ( ! $theme [ 'compatibleWP' ] || ! $theme [ 'compatiblePHP' ] ) {
2023-09-14 02:54:19 +02:00
$message = '' ;
2020-07-27 17:21:02 +02:00
if ( ! $theme [ 'compatibleWP' ] && ! $theme [ 'compatiblePHP' ] ) {
2023-09-14 02:54:19 +02:00
$message = __ ( 'This theme does not work with your versions of WordPress and PHP.' );
2020-07-27 17:21:02 +02:00
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
2023-09-14 02:54:19 +02:00
$message .= sprintf (
2020-07-27 17:21:02 +02:00
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
);
2023-09-14 02:54:19 +02:00
$message .= wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
2020-07-27 17:21:02 +02:00
} elseif ( current_user_can ( 'update_core' ) ) {
2023-09-14 02:54:19 +02:00
$message .= sprintf (
2020-07-27 17:21:02 +02:00
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
} elseif ( current_user_can ( 'update_php' ) ) {
2023-09-14 02:54:19 +02:00
$message .= sprintf (
2020-07-27 17:21:02 +02:00
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
2023-09-14 02:54:19 +02:00
$message .= wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
2020-07-27 17:21:02 +02:00
}
} elseif ( ! $theme [ 'compatibleWP' ] ) {
2023-09-14 02:54:19 +02:00
$message .= __ ( 'This theme does not work with your version of WordPress.' );
2020-07-27 17:21:02 +02:00
if ( current_user_can ( 'update_core' ) ) {
2023-09-14 02:54:19 +02:00
$message .= sprintf (
2020-07-27 17:21:02 +02:00
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
} elseif ( ! $theme [ 'compatiblePHP' ] ) {
2023-09-14 02:54:19 +02:00
$message .= __ ( 'This theme does not work with your version of PHP.' );
2020-07-27 17:21:02 +02:00
if ( current_user_can ( 'update_php' ) ) {
2023-09-14 02:54:19 +02:00
$message .= sprintf (
2020-07-27 17:21:02 +02:00
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
2023-09-14 02:54:19 +02:00
$message .= wp_update_php_annotation ( '</p><p><em>' , '</em>' , false );
2020-07-27 17:21:02 +02:00
}
}
2023-09-14 02:54:19 +02:00
wp_admin_notice (
$message ,
array (
'type' => 'error' ,
'additional_classes' => array ( 'inline' , 'notice-alt' ),
)
);
2020-07-27 17:21:02 +02:00
}
2021-06-08 01:10:57 +02:00
/* translators: %s: Theme name. */
$details_aria_label = sprintf ( _x ( 'View Theme Details for %s' , 'theme' ), $theme [ 'name' ] );
?>
2021-11-05 18:58:57 +01:00
< button type = " button " aria - label = " <?php echo esc_attr( $details_aria_label ); ?> " class = " more-details " id = " <?php echo esc_attr( $aria_action ); ?> " >< ? php _e ( 'Theme Details' ); ?> </button>
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
< div class = " theme-author " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme author name. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
printf ( __ ( 'By %s' ), $theme [ 'author' ] );
?>
</ div >
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
2017-10-19 20:10:47 +02:00
< div class = " theme-id-container " >
< ? php if ( $theme [ 'active' ] ) { ?>
2021-11-05 18:58:57 +01:00
< h2 class = " theme-name " id = " <?php echo esc_attr( $aria_name ); ?> " >
2020-01-20 15:27:04 +01:00
< span >< ? php _ex ( 'Active:' , 'theme' ); ?> </span> <?php echo $theme['name']; ?>
2017-10-19 20:10:47 +02:00
</ h2 >
< ? php } else { ?>
2021-11-05 18:58:57 +01:00
< h2 class = " theme-name " id = " <?php echo esc_attr( $aria_name ); ?> " >< ? php echo $theme [ 'name' ]; ?> </h2>
2017-10-19 20:10:47 +02:00
< ? php } ?>
< div class = " theme-actions " >
< ? php if ( $theme [ 'active' ] ) { ?>
2021-06-08 01:10:57 +02:00
< ? php
if ( $theme [ 'actions' ][ 'customize' ] && current_user_can ( 'edit_theme_options' ) && current_user_can ( 'customize' ) ) {
/* translators: %s: Theme name. */
$customize_aria_label = sprintf ( _x ( 'Customize %s' , 'theme' ), $theme [ 'name' ] );
?>
< a aria - label = " <?php echo esc_attr( $customize_aria_label ); ?> " class = " button button-primary customize load-customize hide-if-no-customize " href = " <?php echo $theme['actions'] ['customize']; ?> " >< ? php _e ( 'Customize' ); ?> </a>
2017-10-19 20:10:47 +02:00
< ? php } ?>
2020-05-18 14:32:10 +02:00
< ? php } elseif ( $theme [ 'compatibleWP' ] && $theme [ 'compatiblePHP' ] ) { ?>
2015-03-26 21:56:26 +01:00
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme name. */
2017-10-19 20:10:47 +02:00
$aria_label = sprintf ( _x ( 'Activate %s' , 'theme' ), '{{ data.name }}' );
2015-03-26 21:56:26 +01:00
?>
2017-10-19 20:10:47 +02:00
< a class = " button activate " href = " <?php echo $theme['actions'] ['activate']; ?> " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _e ( 'Activate' ); ?> </a>
2021-06-08 01:10:57 +02:00
< ? php
2023-06-27 11:36:21 +02:00
// Only classic themes require the "customize" capability.
if ( current_user_can ( 'edit_theme_options' ) && ( $theme [ 'blockTheme' ] || current_user_can ( 'customize' ) ) ) {
2021-06-08 01:10:57 +02:00
/* translators: %s: Theme name. */
$live_preview_aria_label = sprintf ( _x ( 'Live Preview %s' , 'theme' ), '{{ data.name }}' );
?>
< a aria - label = " <?php echo esc_attr( $live_preview_aria_label ); ?> " class = " button button-primary load-customize hide-if-no-customize " href = " <?php echo $theme['actions'] ['customize']; ?> " >< ? php _e ( 'Live Preview' ); ?> </a>
2017-10-19 20:10:47 +02:00
< ? php } ?>
2020-05-18 14:32:10 +02:00
< ? php } else { ?>
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Cannot Activate %s' , 'theme' ), '{{ data.name }}' );
?>
< a class = " button disabled " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _ex ( 'Cannot Activate' , 'theme' ); ?> </a>
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
< ? php if ( ! $theme [ 'blockTheme' ] && current_user_can ( 'edit_theme_options' ) && current_user_can ( 'customize' ) ) { ?>
2020-05-18 14:32:10 +02:00
< a class = " button button-primary hide-if-no-customize disabled " >< ? php _e ( 'Live Preview' ); ?> </a>
< ? php } ?>
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
< ? php } ?>
2017-10-19 20:10:47 +02:00
</ div >
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
</ div >
</ div >
< ? php endforeach ; ?>
</ div >
</ div >
2017-10-01 15:48:46 +02:00
< div class = " theme-overlay " tabindex = " 0 " role = " dialog " aria - label = " <?php esc_attr_e( 'Theme Details' ); ?> " ></ div >
2013-11-29 03:40:09 +01:00
2017-10-16 20:14:48 +02:00
< p class = " no-themes " >< ? php _e ( 'No themes found. Try a different search.' ); ?> </p>
2015-04-03 04:32:28 +02:00
2004-10-25 01:48:51 +02:00
< ? php
// List broken themes, if any.
2019-07-01 14:52:01 +02:00
$broken_themes = wp_get_themes ( array ( 'errors' => true ) );
2020-03-26 18:50:15 +01:00
if ( ! is_multisite () && $broken_themes ) {
2018-08-17 03:51:36 +02:00
?>
2004-10-25 01:48:51 +02:00
2013-11-20 20:44:12 +01:00
< div class = " broken-themes " >
2017-12-01 00:11:00 +01:00
< h3 >< ? php _e ( 'Broken Themes' ); ?> </h3>
2016-02-23 18:20:27 +01:00
< p >< ? php _e ( 'The following themes are installed but incomplete.' ); ?> </p>
2004-10-25 01:48:51 +02:00
2018-08-17 03:51:36 +02:00
< ? php
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
$can_resume = current_user_can ( 'resume_themes' );
2018-08-17 03:51:36 +02:00
$can_delete = current_user_can ( 'delete_themes' );
$can_install = current_user_can ( 'install_themes' );
?>
2013-11-20 20:44:12 +01:00
< table >
2004-10-25 01:48:51 +02:00
< tr >
2017-12-01 00:11:00 +01:00
< th >< ? php _ex ( 'Name' , 'theme name' ); ?> </th>
< th >< ? php _e ( 'Description' ); ?> </th>
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
< ? php if ( $can_resume ) { ?>
< td ></ td >
< ? php } ?>
2014-10-16 21:46:18 +02:00
< ? php if ( $can_delete ) { ?>
2015-07-28 12:19:24 +02:00
< td ></ td >
2014-10-16 21:46:18 +02:00
< ? php } ?>
2015-10-15 07:11:24 +02:00
< ? php if ( $can_install ) { ?>
< td ></ td >
< ? php } ?>
2004-10-25 01:48:51 +02:00
</ tr >
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
< ? php
foreach ( $broken_themes as $broken_theme ) :
?>
2013-10-02 22:50:09 +02:00
< tr >
2020-06-10 19:23:36 +02:00
< td >< ? php echo $broken_theme -> get ( 'Name' ) ? $broken_theme -> display ( 'Name' ) : esc_html ( $broken_theme -> get_stylesheet () ); ?> </td>
2014-10-16 21:46:18 +02:00
< td >< ? php echo $broken_theme -> errors () -> get_error_message (); ?> </td>
< ? php
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
if ( $can_resume ) {
if ( 'theme_paused' === $broken_theme -> errors () -> get_error_code () ) {
$stylesheet = $broken_theme -> get_stylesheet ();
$resume_url = add_query_arg (
array (
'action' => 'resume' ,
'stylesheet' => urlencode ( $stylesheet ),
),
admin_url ( 'themes.php' )
);
$resume_url = wp_nonce_url ( $resume_url , 'resume-theme_' . $stylesheet );
?>
< td >< a href = " <?php echo esc_url( $resume_url ); ?> " class = " button resume-theme " >< ? php _e ( 'Resume' ); ?> </a></td>
< ? php
} else {
?>
< td ></ td >
< ? php
}
}
2014-10-16 21:46:18 +02:00
if ( $can_delete ) {
$stylesheet = $broken_theme -> get_stylesheet ();
2017-12-01 00:11:00 +01:00
$delete_url = add_query_arg (
array (
'action' => 'delete' ,
'stylesheet' => urlencode ( $stylesheet ),
2018-08-17 03:51:36 +02:00
),
admin_url ( 'themes.php' )
2017-12-01 00:11:00 +01:00
);
2014-10-16 21:46:18 +02:00
$delete_url = wp_nonce_url ( $delete_url , 'delete-theme_' . $stylesheet );
?>
2016-09-28 21:54:28 +02:00
< td >< a href = " <?php echo esc_url( $delete_url ); ?> " class = " button delete-theme " >< ? php _e ( 'Delete' ); ?> </a></td>
2014-10-16 21:46:18 +02:00
< ? php
}
2015-10-15 07:11:24 +02:00
if ( $can_install && 'theme_no_parent' === $broken_theme -> errors () -> get_error_code () ) {
$parent_theme_name = $broken_theme -> get ( 'Template' );
2017-12-01 00:11:00 +01:00
$parent_theme = themes_api ( 'theme_information' , array ( 'slug' => urlencode ( $parent_theme_name ) ) );
2015-10-15 07:11:24 +02:00
if ( ! is_wp_error ( $parent_theme ) ) {
2017-12-01 00:11:00 +01:00
$install_url = add_query_arg (
array (
'action' => 'install-theme' ,
'theme' => urlencode ( $parent_theme_name ),
2018-08-17 03:51:36 +02:00
),
admin_url ( 'update.php' )
2017-12-01 00:11:00 +01:00
);
2015-10-15 07:11:24 +02:00
$install_url = wp_nonce_url ( $install_url , 'install-theme_' . $parent_theme_name );
?>
2016-09-28 21:54:28 +02:00
< td >< a href = " <?php echo esc_url( $install_url ); ?> " class = " button install-theme " >< ? php _e ( 'Install Parent Theme' ); ?> </a></td>
2015-10-15 07:11:24 +02:00
< ? php
}
}
2014-10-16 21:46:18 +02:00
?>
</ tr >
Administration: Use `wp_admin_notice()` more in `wp-admin/`.
Add additional usage of `wp_admin_notice()` in `wp-admin/` on `.error` and miscellaneous usages previously overlooked.
Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].
Props costdev, joedolson.
See #57791.
Built from https://develop.svn.wordpress.org/trunk@56600
git-svn-id: http://core.svn.wordpress.org/trunk@56112 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-17 17:33:17 +02:00
< ? php
endforeach ;
?>
2004-10-25 01:48:51 +02:00
</ table >
2013-11-20 20:44:12 +01:00
</ div >
2018-08-17 03:51:36 +02:00
< ? php
2004-10-25 01:48:51 +02:00
}
?>
2013-11-13 21:58:05 +01:00
</ div ><!-- . wrap -->
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
< ? php
2020-06-18 02:00:13 +02:00
/**
2020-06-20 14:14:09 +02:00
* Returns the JavaScript template used to display the auto - update setting for a theme .
2020-06-18 02:00:13 +02:00
*
* @ since 5.5 . 0
*
2020-06-20 00:17:07 +02:00
* @ return string The template for displaying the auto - update setting link .
2020-06-18 02:00:13 +02:00
*/
function wp_theme_auto_update_setting_template () {
2023-09-14 02:54:19 +02:00
$notice = wp_get_admin_notice (
'' ,
array (
'type' => 'error' ,
'additional_classes' => array ( 'notice-alt' , 'inline' , 'hidden' ),
)
);
2020-06-18 02:00:13 +02:00
$template = '
2020-06-19 18:51:14 +02:00
< div class = " theme-autoupdate " >
2020-07-29 22:01:08 +02:00
< # if ( data.autoupdate.supported ) { #>
< # if ( data.autoupdate.forced === false ) { #>
' . __( ' Auto - updates disabled ' ) . '
< # } else if ( data.autoupdate.forced ) { #>
' . __( ' Auto - updates enabled ' ) . '
< # } else if ( data.autoupdate.enabled ) { #>
< button type = " button " class = " toggle-auto-update button-link " data - slug = " { { data.id }} " data - wp - action = " disable " >
< span class = " dashicons dashicons-update spin hidden " aria - hidden = " true " ></ span >< span class = " label " > ' . __( ' Disable auto - updates ' ) . ' </ span >
</ button >
< # } else { #>
< button type = " button " class = " toggle-auto-update button-link " data - slug = " { { data.id }} " data - wp - action = " enable " >
< span class = " dashicons dashicons-update spin hidden " aria - hidden = " true " ></ span >< span class = " label " > ' . __( ' Enable auto - updates ' ) . ' </ span >
</ button >
< # } #>
2020-06-18 02:00:13 +02:00
< # } #>
< # if ( data.hasUpdate ) { #>
2020-07-29 22:01:08 +02:00
< # if ( data.autoupdate.supported && data.autoupdate.enabled ) { #>
2020-06-18 02:00:13 +02:00
< span class = " auto-update-time " >
< # } else { #>
< span class = " auto-update-time hidden " >
< # } #>
< br /> ' . wp_get_auto_update_message() . ' </ span >
< # } #>
2023-09-14 02:54:19 +02:00
' . $notice . '
2020-06-19 18:51:14 +02:00
</ div >
2020-06-18 02:00:13 +02:00
' ;
/**
2020-06-20 14:14:09 +02:00
* Filters the JavaScript template used to display the auto - update setting for a theme ( in the overlay ) .
2020-06-18 02:00:13 +02:00
*
* See { @ see wp_prepare_themes_for_js ()} for the properties of the `data` object .
*
* @ since 5.5 . 0
*
* @ param string $template The template for displaying the auto - update setting link .
*/
return apply_filters ( 'theme_auto_update_setting_template' , $template );
}
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
/*
* The tmpl - theme template is synchronized with PHP above !
*/
?>
2013-11-13 21:58:05 +01:00
< script id = " tmpl-theme " type = " text/template " >
2013-11-29 05:04:11 +01:00
< # if ( data.screenshot[0] ) { #>
2013-12-01 19:00:09 +01:00
< div class = " theme-screenshot " >
2022-03-17 23:21:07 +01:00
< img src = " { { data.screenshot[0] }}?ver= { { data.version }} " alt = " " />
2013-12-01 19:00:09 +01:00
</ div >
2013-11-29 05:04:11 +01:00
< # } else { #>
2013-11-29 18:17:11 +01:00
< div class = " theme-screenshot blank " ></ div >
2013-11-29 05:04:11 +01:00
< # } #>
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< # if ( data.hasUpdate ) { #>
2020-07-28 02:09:02 +02:00
< # if ( data.updateResponse.compatibleWP && data.updateResponse.compatiblePHP ) { #>
< div class = " update-message notice inline notice-warning notice-alt " >< p >
< # if ( data.hasPackage ) { #>
< ? php _e ( 'New version available. <button class="button-link" type="button">Update now</button>' ); ?>
< # } else { #>
< ? php _e ( 'New version available.' ); ?>
< # } #>
</ p ></ div >
2016-10-14 15:33:29 +02:00
< # } else { #>
2020-07-28 13:31:01 +02:00
< div class = " update-message notice inline notice-error notice-alt " >< p >
2020-07-28 02:09:02 +02:00
< # if ( ! data.updateResponse.compatibleWP && ! data.updateResponse.compatiblePHP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
printf (
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
} elseif ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
} elseif ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } else if ( ! data.updateResponse.compatibleWP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
?>
< # } else if ( ! data.updateResponse.compatiblePHP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } #>
</ p ></ div >
2016-10-14 15:33:29 +02:00
< # } #>
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< # } #>
2020-07-27 17:04:03 +02:00
< # if ( ! data.compatibleWP || ! data.compatiblePHP ) { #>
< div class = " notice notice-error notice-alt " >< p >
< # if ( ! data.compatibleWP && ! data.compatiblePHP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your versions of WordPress and PHP.' );
2020-07-27 17:04:03 +02:00
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
printf (
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
} elseif ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
} elseif ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } else if ( ! data.compatibleWP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your version of WordPress.' );
2020-07-27 17:04:03 +02:00
if ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
?>
< # } else if ( ! data.compatiblePHP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your version of PHP.' );
2020-07-27 17:04:03 +02:00
if ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } #>
</ p ></ div >
< # } #>
2021-06-08 01:10:57 +02:00
< ? php
/* translators: %s: Theme name. */
$details_aria_label = sprintf ( _x ( 'View Theme Details for %s' , 'theme' ), '{{ data.name }}' );
?>
< button type = " button " aria - label = " <?php echo esc_attr( $details_aria_label ); ?> " class = " more-details " id = " { { data.id }}-action " >< ? php _e ( 'Theme Details' ); ?> </button>
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< div class = " theme-author " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme author name. */
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
printf ( __ ( 'By %s' ), '{{{ data.author }}}' );
?>
</ div >
2013-12-11 20:49:11 +01:00
2017-10-19 20:10:47 +02:00
< div class = " theme-id-container " >
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< # if ( data.active ) { #>
2017-10-19 20:10:47 +02:00
< h2 class = " theme-name " id = " { { data.id }}-name " >
2020-01-20 15:27:04 +01:00
< span >< ? php _ex ( 'Active:' , 'theme' ); ?> </span> {{{ data.name }}}
2017-10-19 20:10:47 +02:00
</ h2 >
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< # } else { #>
2017-10-19 20:10:47 +02:00
< h2 class = " theme-name " id = " { { data.id }}-name " > {{{ data . name }}} </ h2 >
2013-11-13 21:58:05 +01:00
< # } #>
2017-10-19 20:10:47 +02:00
< div class = " theme-actions " >
< # if ( data.active ) { #>
< # if ( data.actions.customize ) { #>
2021-06-08 01:10:57 +02:00
< ? php
/* translators: %s: Theme name. */
$customize_aria_label = sprintf ( _x ( 'Customize %s' , 'theme' ), '{{ data.name }}' );
?>
< a aria - label = " <?php echo esc_attr( $customize_aria_label ); ?> " class = " button button-primary customize load-customize hide-if-no-customize " href = " { { { data.actions.customize }}} " >< ? php _e ( 'Customize' ); ?> </a>
2017-10-19 20:10:47 +02:00
< # } #>
< # } else { #>
2020-05-18 14:32:10 +02:00
< # if ( data.compatibleWP && data.compatiblePHP ) { #>
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Activate %s' , 'theme' ), '{{ data.name }}' );
?>
2021-11-05 18:58:57 +01:00
< a class = " button activate " href = " { { { data.actions.activate }}} " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _e ( 'Activate' ); ?> </a>
2023-06-27 11:36:21 +02:00
< ? php
/* translators: %s: Theme name. */
$live_preview_aria_label = sprintf ( _x ( 'Live Preview %s' , 'theme' ), '{{ data.name }}' );
?>
< a aria - label = " <?php echo esc_attr( $live_preview_aria_label ); ?> " class = " button button-primary load-customize hide-if-no-customize " href = " { { { data.actions.customize }}} " >< ? php _e ( 'Live Preview' ); ?> </a>
2020-05-18 14:32:10 +02:00
< # } else { #>
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Cannot Activate %s' , 'theme' ), '{{ data.name }}' );
?>
< a class = " button disabled " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _ex ( 'Cannot Activate' , 'theme' ); ?> </a>
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
< # if ( ! data.blockTheme ) { #>
< a class = " button button-primary hide-if-no-customize disabled " >< ? php _e ( 'Live Preview' ); ?> </a>
< # } #>
2020-05-18 14:32:10 +02:00
< # } #>
2017-10-19 20:10:47 +02:00
< # } #>
</ div >
2013-11-13 21:58:05 +01:00
</ div >
</ script >
< script id = " tmpl-theme-single " type = " text/template " >
< div class = " theme-backdrop " ></ div >
2017-10-01 15:48:46 +02:00
< div class = " theme-wrap wp-clearfix " role = " document " >
2013-12-02 08:12:09 +01:00
< div class = " theme-header " >
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
< button class = " left dashicons dashicons-no " >< span class = " screen-reader-text " >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Show previous theme' );
?>
</ span ></ button >
< button class = " right dashicons dashicons-no " >< span class = " screen-reader-text " >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Show next theme' );
?>
</ span ></ button >
< button class = " close dashicons dashicons-no " >< span class = " screen-reader-text " >
< ? php
/* translators: Hidden accessibility text. */
_e ( 'Close details dialog' );
?>
</ span ></ button >
2013-11-13 21:58:05 +01:00
</ div >
2016-01-30 14:46:27 +01:00
< div class = " theme-about wp-clearfix " >
2013-12-02 08:14:10 +01:00
< div class = " theme-screenshots " >
< # if ( data.screenshot[0] ) { #>
2022-03-17 23:21:07 +01:00
< div class = " screenshot " >< img src = " { { data.screenshot[0] }}?ver= { { data.version }} " alt = " " /></ div >
2013-12-02 08:14:10 +01:00
< # } else { #>
2013-12-06 18:11:10 +01:00
< div class = " screenshot blank " ></ div >
2013-11-13 21:58:05 +01:00
< # } #>
</ div >
2013-12-02 08:14:10 +01:00
< div class = " theme-info " >
< # if ( data.active ) { #>
2022-01-15 09:44:03 +01:00
< span class = " current-label " >< ? php _e ( 'Active Theme' ); ?> </span>
2013-12-02 08:14:10 +01:00
< # } #>
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
< h2 class = " theme-name " > {{{ data . name }}} < span class = " theme-version " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme version. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
printf ( __ ( 'Version: %s' ), '{{ data.version }}' );
?>
</ span ></ h2 >
< p class = " theme-author " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme author link. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
printf ( __ ( 'By %s' ), '{{{ data.authorAndUri }}}' );
?>
</ p >
2013-12-02 19:58:09 +01:00
2020-07-27 15:12:04 +02:00
< # if ( ! data.compatibleWP || ! data.compatiblePHP ) { #>
< div class = " notice notice-error notice-alt notice-large " >< p >
< # if ( ! data.compatibleWP && ! data.compatiblePHP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your versions of WordPress and PHP.' );
2020-07-27 15:12:04 +02:00
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
printf (
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
} elseif ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
} elseif ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } else if ( ! data.compatibleWP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your version of WordPress.' );
2020-07-27 15:12:04 +02:00
if ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
?>
< # } else if ( ! data.compatiblePHP ) { #>
< ? php
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
_e ( 'This theme does not work with your version of PHP.' );
2020-07-27 15:12:04 +02:00
if ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } #>
</ p ></ div >
< # } #>
2020-07-28 02:09:02 +02:00
< # if ( data.hasUpdate ) { #>
< # if ( data.updateResponse.compatibleWP && data.updateResponse.compatiblePHP ) { #>
< div class = " notice notice-warning notice-alt notice-large " >
< h3 class = " notice-title " >< ? php _e ( 'Update Available' ); ?> </h3>
{{{ data . update }}}
</ div >
< # } else { #>
< div class = " notice notice-error notice-alt notice-large " >
< h3 class = " notice-title " >< ? php _e ( 'Update Incompatible' ); ?> </h3>
< p >
< # if ( ! data.updateResponse.compatibleWP && ! data.updateResponse.compatiblePHP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your versions of WordPress and PHP.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_core' ) && current_user_can ( 'update_php' ) ) {
printf (
/* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
' ' . __ ( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
self_admin_url ( 'update-core.php' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
} elseif ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
} elseif ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } else if ( ! data.updateResponse.compatibleWP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your version of WordPress.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_core' ) ) {
printf (
/* translators: %s: URL to WordPress Updates screen. */
' ' . __ ( '<a href="%s">Please update WordPress</a>.' ),
self_admin_url ( 'update-core.php' )
);
}
?>
< # } else if ( ! data.updateResponse.compatiblePHP ) { #>
< ? php
2020-07-28 13:31:01 +02:00
printf (
/* translators: %s: Theme name. */
Administration: Replace contracted verb forms for better consistency.
This changeset replaces contracted verb forms like `doesn't`, `can't`, or `isn't` with non-contracted forms like `does not`, `cannot`, or `is not`, for better consistency across the WordPress administration. It also updates some corresponding unit tests strings.
Props Presskopp, socalchristina, aandrewdixon, francina, SergeyBiryukov, JeffPaul, audrasjb, hellofromTonya.
Fixes #38913.
See #39176.
Built from https://develop.svn.wordpress.org/trunk@52978
git-svn-id: http://core.svn.wordpress.org/trunk@52567 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-22 17:25:03 +01:00
__ ( 'There is a new version of %s available, but it does not work with your version of PHP.' ),
2020-07-28 13:31:01 +02:00
'{{{ data.name }}}'
);
2020-07-28 02:09:02 +02:00
if ( current_user_can ( 'update_php' ) ) {
printf (
/* translators: %s: URL to Update PHP page. */
' ' . __ ( '<a href="%s">Learn more about updating PHP</a>.' ),
esc_url ( wp_get_update_php_url () )
);
wp_update_php_annotation ( '</p><p><em>' , '</em>' );
}
?>
< # } #>
</ p >
</ div >
< # } #>
Security: Add user interface to auto-update themes and plugins.
Building on core update mechanisms, this adds the ability to enable automatic updates for themes and plugins to the WordPress admin.
Fixes: #50052.
Props: afercia, afragen, audrasjb, azaozz, bookdude13, davidperonne, desrosj, gmays, gmays, javiercasares, karmatosed, knutsp, mapk, mukesh27, netweb, nicolaskulka, nielsdeblaauw, paaljoachim, passoniate, pbiron, pedromendonca, whodunitagency, whyisjake, wpamitkumar, and xkon.
Built from https://develop.svn.wordpress.org/trunk@47835
git-svn-id: http://core.svn.wordpress.org/trunk@47611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-05-20 20:49:09 +02:00
< # } #>
2020-07-28 02:09:02 +02:00
< # if ( data.actions.autoupdate ) { #>
< ? php echo wp_theme_auto_update_setting_template (); ?>
2013-12-02 08:14:10 +01:00
< # } #>
2020-07-27 15:12:04 +02:00
2013-12-02 08:14:10 +01:00
< p class = " theme-description " > {{{ data . description }}} </ p >
2013-12-02 19:58:09 +01:00
2013-12-02 08:14:10 +01:00
< # if ( data.parent ) { #>
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
< p class = " parent-theme " >
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme name. */
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
printf ( __ ( 'This is a child theme of %s.' ), '<strong>{{{ data.parent }}}</strong>' );
?>
</ p >
2013-12-02 08:14:10 +01:00
< # } #>
2013-12-02 19:58:09 +01:00
2013-12-02 08:14:10 +01:00
< # if ( data.tags ) { #>
2013-12-06 15:37:10 +01:00
< p class = " theme-tags " >< span >< ? php _e ( 'Tags:' ); ?> </span> {{{ data.tags }}}</p>
2013-12-02 08:14:10 +01:00
< # } #>
</ div >
2013-11-13 21:58:05 +01:00
</ div >
2013-12-02 08:14:10 +01:00
< div class = " theme-actions " >
< div class = " active-theme " >
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
< a href = " { { { data.actions.customize }}} " class = " button button-primary customize load-customize hide-if-no-customize " >< ? php _e ( 'Customize' ); ?> </a>
2013-12-02 19:58:09 +01:00
< ? php echo implode ( ' ' , $current_theme_actions ); ?>
2013-12-02 08:14:10 +01:00
</ div >
< div class = " inactive-theme " >
2020-05-18 14:32:10 +02:00
< # if ( data.compatibleWP && data.compatiblePHP ) { #>
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Activate %s' , 'theme' ), '{{ data.name }}' );
?>
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
< # if ( ! data.blockTheme ) { #>
< a href = " { { { data.actions.customize }}} " class = " button button-primary load-customize hide-if-no-customize " >< ? php _e ( 'Live Preview' ); ?> </a>
< # } #>
Administration: Improve control proximity in theme details modal.
Make the theme details modals in the Customizer and at Appearance > Themes consistent. Change the order of controls so both modals are in the same sequence, center all controls in both desktop and mobile views, and change delete link color to meet color contrast requirements.
Props trishasalas, afercia, melchoyce, karmatosed, cathibosco1, michaelarestad, joedolson, petitphp, mikinc860.
Fixes #59372. See #59371, #40822.
Built from https://develop.svn.wordpress.org/trunk@56639
git-svn-id: http://core.svn.wordpress.org/trunk@56151 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-20 23:03:20 +02:00
< # if ( data.actions.activate ) { #>
< a href = " { { { data.actions.activate }}} " class = " button activate " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _e ( 'Activate' ); ?> </a>
< # } #>
2020-05-18 14:32:10 +02:00
< # } else { #>
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Cannot Activate %s' , 'theme' ), '{{ data.name }}' );
?>
Themes: Show only "Customize" or "Activate" button in block theme's Theme Details modal.
At the bottom of a block theme's "Theme Details" modal, only one button will be displayed:
* "Customize" button when the block theme is activated;
* Else, the "Activate" button.
The "Live Preview", "Editor beta", and "Navigation Menus" buttons are removed.
Follow-up to [15646], [52341], [52346].
Props poena, ryelle, kafleg, antonvlasenko, costdev, SergeyBiryukov, hellofromTonya.
Fixes #54578.
Built from https://develop.svn.wordpress.org/trunk@52353
git-svn-id: http://core.svn.wordpress.org/trunk@51945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-12-10 21:33:00 +01:00
< # if ( ! data.blockTheme ) { #>
< a class = " button button-primary hide-if-no-customize disabled " >< ? php _e ( 'Live Preview' ); ?> </a>
< # } #>
Administration: Improve control proximity in theme details modal.
Make the theme details modals in the Customizer and at Appearance > Themes consistent. Change the order of controls so both modals are in the same sequence, center all controls in both desktop and mobile views, and change delete link color to meet color contrast requirements.
Props trishasalas, afercia, melchoyce, karmatosed, cathibosco1, michaelarestad, joedolson, petitphp, mikinc860.
Fixes #59372. See #59371, #40822.
Built from https://develop.svn.wordpress.org/trunk@56639
git-svn-id: http://core.svn.wordpress.org/trunk@56151 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-20 23:03:20 +02:00
< # if ( data.actions.activate ) { #>
< a class = " button disabled " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _ex ( 'Cannot Activate' , 'theme' ); ?> </a>
< # } #>
2013-12-02 08:14:10 +01:00
< # } #>
</ div >
2013-12-02 19:58:09 +01:00
2013-12-11 23:49:09 +01:00
< # if ( ! data.active && data.actions['delete'] ) { #>
2021-06-08 01:10:57 +02:00
< ? php
/* translators: %s: Theme name. */
$aria_label = sprintf ( _x ( 'Delete %s' , 'theme' ), '{{ data.name }}' );
?>
2021-11-05 18:58:57 +01:00
< a href = " { { { data.actions['delete'] }}} " class = " button delete-theme " aria - label = " <?php echo esc_attr( $aria_label ); ?> " >< ? php _e ( 'Delete' ); ?> </a>
2013-11-29 10:01:09 +01:00
< # } #>
2013-11-13 21:58:05 +01:00
</ div >
2013-12-02 08:12:09 +01:00
</ div >
2013-11-13 21:58:05 +01:00
</ script >
2004-09-11 18:12:40 +02:00
Update/Install: Shiny Updates v2.
Gone are the days of isolation and feelings of "meh", brought on by The Bleak Screen of Sadness. For a shiny knight has arrived to usher our plugins and themes along their arduous journey of installation, updates, and the inevitable fate of ultimate deletion.
Props swissspidy, adamsilverstein, mapk, afragen, ocean90, ryelle, j-falk, michael-arestad, melchoyce, DrewAPicture, AdamSoucie, ethitter, pento, dd32, kraftbj, Ipstenu, jorbin, afercia, stephdau, paulwilde, jipmoors, khag7, svovaf, jipmoors, obenland.
Fixes #22029, #25828, #31002, #31529, #31530, #31773, #33637, #35032.
Built from https://develop.svn.wordpress.org/trunk@37714
git-svn-id: http://core.svn.wordpress.org/trunk@37680 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-06-15 18:37:29 +02:00
< ? php
wp_print_request_filesystem_credentials_modal ();
wp_print_admin_notice_templates ();
wp_print_update_row_templates ();
2017-12-01 00:11:00 +01:00
wp_localize_script (
2018-08-17 03:51:36 +02:00
'updates' ,
'_wpUpdatesItemCounts' ,
array (
2017-12-01 00:11:00 +01:00
'totals' => wp_get_update_data (),
)
);
2016-10-19 12:27:29 +02:00
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/admin-footer.php' ;