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 ();
if ( $active -> get ( 'Template' ) == $_GET [ 'stylesheet' ] ) {
wp_redirect ( admin_url ( 'themes.php?delete-active-child=true' ) );
} else {
delete_theme ( $_GET [ 'stylesheet' ] );
wp_redirect ( admin_url ( 'themes.php?deleted=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
2017-12-01 00:11:00 +01:00
$title = __ ( 'Manage 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>' .
'<li>' . __ ( 'Click Customize for the current theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
2015-04-03 04:32:28 +02:00
'<p>' . __ ( 'The current theme is displayed highlighted as the first theme.' ) . '</p>' .
'<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/ */
__ ( 'If you would like to see more themes to choose from, click on the “Add New” 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!' ),
__ ( '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>' .
2017-10-22 22:03:51 +02: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 Publish & Activate 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
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>' .
2019-07-26 00:45:57 +02:00
'<p>' . __ ( '<a href="https://wordpress.org/support/article/using-themes/">Documentation on Using Themes</a>' ) . '</p>' .
2019-04-09 00:59:56 +02:00
'<p>' . __ ( '<a href="https://wordpress.org/support/">Support</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' ) ) : ?>
2019-12-04 11:36:01 +01:00
< a href = " <?php echo admin_url( 'theme-install.php' ); ?> " class = " hide-if-no-js page-title-action " >< ? php echo esc_html_x ( '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' ] ) ) {
2018-08-17 03:51:36 +02:00
?>
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
< div id = " message1 " class = " updated notice is-dismissible " >< p >< ? php _e ( 'The active theme is broken. Reverting to the default theme.' ); ?> </p></div>
2018-08-17 03:51:36 +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
} elseif ( isset ( $_GET [ 'activated' ] ) ) {
2017-12-01 00:11:00 +01:00
if ( isset ( $_GET [ 'previewed' ] ) ) {
?>
2016-02-24 00:39:25 +01:00
< div id = " message2 " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Settings saved and theme activated.' ); ?> <a href="<?php echo home_url( '/' ); ?>"><?php _e( 'Visit site' ); ?></a></p></div>
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
< ? php
} else {
2018-08-17 03:51:36 +02:00
?>
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
< div id = " message2 " class = " updated notice is-dismissible " >< p >< ? php _e ( 'New theme activated.' ); ?> <a href="<?php echo home_url( '/' ); ?>"><?php _e( 'Visit site' ); ?></a></p></div>
< ? php
}
} elseif ( isset ( $_GET [ 'deleted' ] ) ) {
?>
< div id = " message3 " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Theme deleted.' ); ?> </p></div>
< ? php
} elseif ( isset ( $_GET [ 'delete-active-child' ] ) ) {
?>
2014-12-02 03:21:24 +01:00
< div id = " message4 " class = " error " >< p >< ? php _e ( 'You cannot delete a theme while it has an active child theme.' ); ?> </p></div>
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
} elseif ( isset ( $_GET [ 'resumed' ] ) ) {
?>
< div id = " message5 " class = " updated notice is-dismissible " >< p >< ? php _e ( 'Theme resumed.' ); ?> </p></div>
< ? php
} elseif ( isset ( $_GET [ 'error' ] ) && 'resuming' === $_GET [ 'error' ] ) {
?>
< div id = " message6 " class = " error " >< p >< ? php _e ( 'Theme could not be resumed because it triggered a <strong>fatal error</strong>.' ); ?> </p></div>
< ? 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
}
2012-04-11 23:19:32 +02:00
$ct = wp_get_theme ();
2013-10-02 22:50:09 +02:00
if ( $ct -> errors () && ( ! is_multisite () || current_user_can ( 'manage_network_themes' ) ) ) {
2020-02-01 22:38:04 +01:00
echo '<div class="error"><p>' . __ ( 'Error:' ) . ' ' . $ct -> errors () -> get_error_message () . '</p></div>' ;
2013-10-02 22:50:09 +02:00
}
2013-11-13 21:58:05 +01:00
/*
2013-10-02 22:50:09 +02:00
// Certain error codes are less fatal than others. We can still display theme information in most cases.
if ( ! $ct -> errors () || ( 1 == count ( $ct -> errors () -> get_error_codes () )
&& in_array ( $ct -> errors () -> get_error_code (), array ( 'theme_no_parent' , 'theme_parent_invalid' , 'theme_no_index' ) ) ) ) : ?>
2013-12-02 19:58:09 +01:00
*/
2013-10-02 22:50:09 +02:00
2010-09-22 19:23:38 +02:00
// Pretend you didn't see this.
2013-12-02 19:58:09 +01:00
$current_theme_actions = array ();
2017-12-01 00:11:00 +01:00
if ( is_array ( $submenu ) && isset ( $submenu [ 'themes.php' ] ) ) {
foreach ( ( array ) $submenu [ 'themes.php' ] as $item ) {
$class = '' ;
2020-05-16 20:42:12 +02:00
if ( 'themes.php' === $item [ 2 ] || 'theme-editor.php' === $item [ 2 ] || 0 === strpos ( $item [ 2 ], 'customize.php' ) ) {
2017-12-01 00:11:00 +01:00
continue ;
}
2020-01-29 01:45:18 +01:00
// 0 = name, 1 = capability, 2 = file.
2017-12-01 00:11:00 +01:00
if ( ( strcmp ( $self , $item [ 2 ] ) == 0 && empty ( $parent_file ) ) || ( $parent_file && ( $item [ 2 ] == $parent_file ) ) ) {
$class = ' current' ;
}
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 ] );
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
2010-05-12 21:19:57 +02:00
?>
2010-12-10 19:40:48 +01:00
2017-10-09 18:04:48 +02:00
< ? php
$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 ) :
$aria_action = esc_attr ( $theme [ 'id' ] . '-action' );
$aria_name = esc_attr ( $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
?>
2017-11-23 05:09:49 +01:00
< div class = " theme<?php echo $active_class ; ?> " tabindex = " 0 " aria - describedby = " <?php echo $aria_action . ' ' . $aria_name ; ?> " >
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 " >
< img src = " <?php echo $theme['screenshot'] [0]; ?> " alt = " " />
</ 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' ] ) : ?>
< div class = " update-message notice inline notice-warning notice-alt " >
2016-10-21 12:36:46 +02:00
< ? php if ( $theme [ 'hasPackage' ] ) : ?>
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
< p >< ? php _e ( 'New version available. <button class="button-link" type="button">Update now</button>' ); ?> </p>
2016-10-21 12:36:46 +02:00
< ? php else : ?>
< p >< ? php _e ( 'New version available.' ); ?> </p>
< ? php 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
</ div >
< ? php endif ; ?>
2014-01-22 22:00:11 +01:00
< span class = " more-details " id = " <?php echo $aria_action ; ?> " >< ? php _e ( 'Theme Details' ); ?> </span>
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' ] ) { ?>
< h2 class = " theme-name " id = " <?php echo $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 { ?>
< h2 class = " theme-name " id = " <?php echo $aria_name ; ?> " >< ? php echo $theme [ 'name' ]; ?> </h2>
< ? php } ?>
< div class = " theme-actions " >
< ? php if ( $theme [ 'active' ] ) { ?>
< ? php if ( $theme [ 'actions' ][ 'customize' ] && current_user_can ( 'edit_theme_options' ) && current_user_can ( 'customize' ) ) { ?>
< a class = " button button-primary customize load-customize hide-if-no-customize " href = " <?php echo $theme['actions'] ['customize']; ?> " >< ? php _e ( 'Customize' ); ?> </a>
< ? php } ?>
< ? php } else { ?>
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>
< ? php if ( current_user_can ( 'edit_theme_options' ) && current_user_can ( 'customize' ) ) { ?>
< a class = " button button-primary load-customize hide-if-no-customize " href = " <?php echo $theme['actions'] ['customize']; ?> " >< ? 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 >
2014-10-16 21:46:18 +02:00
< ? php foreach ( $broken_themes as $broken_theme ) : ?>
2013-10-02 22:50:09 +02:00
< tr >
2014-10-16 21:46:18 +02:00
< td >< ? php echo $broken_theme -> get ( 'Name' ) ? $broken_theme -> display ( 'Name' ) : $broken_theme -> get_stylesheet (); ?> </td>
< 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 >
< ? 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
/*
* 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 " >
< img src = " { { data.screenshot[0] }} " alt = " " />
</ 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 ) { #>
2016-10-14 15:33:29 +02:00
< # if ( data.hasPackage ) { #>
< div class = " update-message notice inline notice-warning notice-alt " >< p >< ? php _e ( 'New version available. <button class="button-link" type="button">Update now</button>' ); ?> </p></div>
< # } else { #>
< div class = " update-message notice inline notice-warning notice-alt " >< p >< ? php _e ( 'New version available.' ); ?> </p></div>
< # } #>
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
< # } #>
2014-01-22 22:00:11 +01:00
< span class = " more-details " id = " { { data.id }}-action " >< ? php _e ( 'Theme Details' ); ?> </span>
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 ) { #>
< a class = " button button-primary customize load-customize hide-if-no-customize " href = " { { { data.actions.customize }}} " >< ? php _e ( 'Customize' ); ?> </a>
< # } #>
< # } else { #>
< ? 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 }}' );
?>
< a class = " button activate " href = " { { { data.actions.activate }}} " aria - label = " <?php echo $aria_label ; ?> " >< ? php _e ( 'Activate' ); ?> </a>
< a class = " button button-primary load-customize hide-if-no-customize " href = " { { { data.actions.customize }}} " >< ? php _e ( 'Live Preview' ); ?> </a>
< # } #>
</ 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 " >
2014-02-07 18:33:12 +01:00
< button class = " left dashicons dashicons-no " >< span class = " screen-reader-text " >< ? php _e ( 'Show previous theme' ); ?> </span></button>
< button class = " right dashicons dashicons-no " >< span class = " screen-reader-text " >< ? php _e ( 'Show next theme' ); ?> </span></button>
2015-05-02 11:11:25 +02:00
< button class = " close dashicons dashicons-no " >< span class = " screen-reader-text " >< ? php _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] ) { #>
2013-12-06 18:11:10 +01:00
< div class = " screenshot " >< img src = " { { data.screenshot[0] }} " 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 ) { #>
< span class = " current-label " >< ? php _e ( 'Current Theme' ); ?> </span>
< # } #>
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
2013-12-02 08:14:10 +01:00
< # if ( data.hasUpdate ) { #>
2015-09-21 17:26:25 +02:00
< div class = " notice notice-warning notice-alt notice-large " >
2015-10-16 17:56:25 +02:00
< h3 class = " notice-title " >< ? php _e ( 'Update Available' ); ?> </h3>
2013-12-02 09:38:10 +01:00
{{{ data . update }}}
2013-12-02 08:14:10 +01:00
</ div >
< # } #>
< 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 " >
2016-07-13 19:32:29 +02:00
< ? php
2019-09-03 02:41:05 +02:00
/* translators: %s: Theme name. */
2016-07-17 01:20:29 +02:00
$aria_label = sprintf ( _x ( 'Activate %s' , 'theme' ), '{{ data.name }}' );
2016-07-13 19:32:29 +02:00
?>
2013-12-02 08:14:10 +01:00
< # if ( data.actions.activate ) { #>
2016-09-28 21:54:28 +02:00
< a href = " { { { data.actions.activate }}} " class = " button activate " aria - label = " <?php echo $aria_label ; ?> " >< ? php _e ( 'Activate' ); ?> </a>
2013-12-02 08:14:10 +01:00
< # } #>
2014-10-18 20:17:20 +02:00
< a href = " { { { data.actions.customize }}} " class = " button button-primary load-customize hide-if-no-customize " >< ? php _e ( 'Live Preview' ); ?> </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'] ) { #>
2016-09-28 21:54:28 +02:00
< a href = " { { { data.actions['delete'] }}} " class = " button delete-theme " >< ? 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' ;