]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/themes.php
WordPress 4.3
[autoinstalls/wordpress.git] / wp-admin / themes.php
1 <?php
2 /**
3  * Themes administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( !current_user_can('switch_themes') && !current_user_can('edit_theme_options') )
13         wp_die( __( 'Cheatin&#8217; uh?' ), 403 );
14
15 if ( current_user_can( 'switch_themes' ) && isset($_GET['action'] ) ) {
16         if ( 'activate' == $_GET['action'] ) {
17                 check_admin_referer('switch-theme_' . $_GET['stylesheet']);
18                 $theme = wp_get_theme( $_GET['stylesheet'] );
19                 if ( ! $theme->exists() || ! $theme->is_allowed() )
20                         wp_die( __( 'Cheatin&#8217; uh?' ), 403 );
21                 switch_theme( $theme->get_stylesheet() );
22                 wp_redirect( admin_url('themes.php?activated=true') );
23                 exit;
24         } elseif ( 'delete' == $_GET['action'] ) {
25                 check_admin_referer('delete-theme_' . $_GET['stylesheet']);
26                 $theme = wp_get_theme( $_GET['stylesheet'] );
27                 if ( !current_user_can('delete_themes') || ! $theme->exists() )
28                         wp_die( __( 'Cheatin&#8217; uh?' ), 403 );
29                 $active = wp_get_theme();
30                 if ( $active->get( 'Template' ) == $_GET['stylesheet'] ) {
31                         wp_redirect( admin_url( 'themes.php?delete-active-child=true' ) );
32                 } else {
33                         delete_theme( $_GET['stylesheet'] );
34                         wp_redirect( admin_url( 'themes.php?deleted=true' ) );
35                 }
36                 exit;
37         }
38 }
39
40 $title = __('Manage Themes');
41 $parent_file = 'themes.php';
42
43 // Help tab: Overview
44 if ( current_user_can( 'switch_themes' ) ) {
45         $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>' .
46                 '<p>' . __( 'From this screen you can:' ) . '</p>' .
47                 '<ul><li>' . __( 'Hover or tap to see Activate and Live Preview buttons' ) . '</li>' .
48                 '<li>' . __( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' .
49                 '<li>' . __( 'Click Customize for the current theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
50                 '<p>' . __( 'The current theme is displayed highlighted as the first theme.' ) . '</p>' .
51                 '<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>';
52
53         get_current_screen()->add_help_tab( array(
54                 'id'      => 'overview',
55                 'title'   => __( 'Overview' ),
56                 'content' => $help_overview
57         ) );
58 } // switch_themes
59
60 // Help tab: Adding Themes
61 if ( current_user_can( 'install_themes' ) ) {
62         if ( is_multisite() ) {
63                 $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>';
64         } else {
65                 $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional themes from the <a href="%s" target="_blank">WordPress.org Theme Directory</a>. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!'), 'https://wordpress.org/themes/' ) . '</p>';
66         }
67
68         get_current_screen()->add_help_tab( array(
69                 'id'      => 'adding-themes',
70                 'title'   => __('Adding Themes'),
71                 'content' => $help_install
72         ) );
73 } // install_themes
74
75 // Help tab: Previewing and Customizing
76 if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {
77         $help_customize =
78                 '<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>'.
79                 '<p>' . __( 'The theme being previewed is fully interactive &mdash; 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 Save &amp; Activate button above the menu.' ) . '</p>' .
80                 '<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>';
81
82         get_current_screen()->add_help_tab( array(
83                 'id'            => 'customize-preview-themes',
84                 'title'         => __( 'Previewing and Customizing' ),
85                 'content'       => $help_customize
86         ) );
87 } // edit_theme_options && customize
88
89 get_current_screen()->set_help_sidebar(
90         '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
91         '<p>' . __( '<a href="https://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>' ) . '</p>' .
92         '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
93 );
94
95 if ( current_user_can( 'switch_themes' ) ) {
96         $themes = wp_prepare_themes_for_js();
97 } else {
98         $themes = wp_prepare_themes_for_js( array( wp_get_theme() ) );
99 }
100 wp_reset_vars( array( 'theme', 'search' ) );
101
102 wp_localize_script( 'theme', '_wpThemeSettings', array(
103         'themes'   => $themes,
104         'settings' => array(
105                 'canInstall'    => ( ! is_multisite() && current_user_can( 'install_themes' ) ),
106                 'installURI'    => ( ! is_multisite() && current_user_can( 'install_themes' ) ) ? admin_url( 'theme-install.php' ) : null,
107                 'confirmDelete' => __( "Are you sure you want to delete this theme?\n\nClick 'Cancel' to go back, 'OK' to confirm the delete." ),
108                 'adminUrl'      => parse_url( admin_url(), PHP_URL_PATH ),
109         ),
110         'l10n' => array(
111                 'addNew'            => __( 'Add New Theme' ),
112                 'search'            => __( 'Search Installed Themes' ),
113                 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis)
114                 'themesFound'       => __( 'Number of Themes found: %d' ),
115                 'noThemesFound'     => __( 'No themes found. Try a different search.' ),
116         ),
117 ) );
118
119 add_thickbox();
120 wp_enqueue_script( 'theme' );
121 wp_enqueue_script( 'customize-loader' );
122
123 require_once( ABSPATH . 'wp-admin/admin-header.php' );
124 ?>
125
126 <div class="wrap">
127         <h1><?php esc_html_e( 'Themes' ); ?>
128                 <span class="title-count theme-count"><?php echo count( $themes ); ?></span>
129         <?php if ( ! is_multisite() && current_user_can( 'install_themes' ) ) : ?>
130                 <a href="<?php echo admin_url( 'theme-install.php' ); ?>" class="hide-if-no-js page-title-action"><?php echo esc_html_x( 'Add New', 'Add new theme' ); ?></a>
131         <?php endif; ?>
132         </h1>
133 <?php
134 if ( ! validate_current_theme() || isset( $_GET['broken'] ) ) : ?>
135 <div id="message1" class="updated notice is-dismissible"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div>
136 <?php elseif ( isset($_GET['activated']) ) :
137                 if ( isset( $_GET['previewed'] ) ) { ?>
138                 <div id="message2" class="updated notice is-dismissible"><p><?php printf( __( 'Settings saved and theme activated. <a href="%s">Visit site</a>' ), home_url( '/' ) ); ?></p></div>
139                 <?php } else { ?>
140 <div id="message2" class="updated notice is-dismissible"><p><?php printf( __( 'New theme activated. <a href="%s">Visit site</a>' ), home_url( '/' ) ); ?></p></div><?php
141                 }
142         elseif ( isset($_GET['deleted']) ) : ?>
143 <div id="message3" class="updated notice is-dismissible"><p><?php _e('Theme deleted.') ?></p></div>
144 <?php elseif ( isset( $_GET['delete-active-child'] ) ) : ?>
145         <div id="message4" class="error"><p><?php _e( 'You cannot delete a theme while it has an active child theme.' ); ?></p></div>
146 <?php
147 endif;
148
149 $ct = wp_get_theme();
150
151 if ( $ct->errors() && ( ! is_multisite() || current_user_can( 'manage_network_themes' ) ) ) {
152         echo '<div class="error"><p>' . sprintf( __( 'ERROR: %s' ), $ct->errors()->get_error_message() ) . '</p></div>';
153 }
154
155 /*
156 // Certain error codes are less fatal than others. We can still display theme information in most cases.
157 if ( ! $ct->errors() || ( 1 == count( $ct->errors()->get_error_codes() )
158         && in_array( $ct->errors()->get_error_code(), array( 'theme_no_parent', 'theme_parent_invalid', 'theme_no_index' ) ) ) ) : ?>
159 */
160
161         // Pretend you didn't see this.
162         $current_theme_actions = array();
163         if ( is_array( $submenu ) && isset( $submenu['themes.php'] ) ) {
164                 foreach ( (array) $submenu['themes.php'] as $item) {
165                         $class = '';
166                         if ( 'themes.php' == $item[2] || 'theme-editor.php' == $item[2] || 0 === strpos( $item[2], 'customize.php' ) )
167                                 continue;
168                         // 0 = name, 1 = capability, 2 = file
169                         if ( ( strcmp($self, $item[2]) == 0 && empty($parent_file)) || ($parent_file && ($item[2] == $parent_file)) )
170                                 $class = ' current';
171                         if ( !empty($submenu[$item[2]]) ) {
172                                 $submenu[$item[2]] = array_values($submenu[$item[2]]); // Re-index.
173                                 $menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]);
174                                 if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook))
175                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='admin.php?page={$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
176                                 else
177                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='{$submenu[$item[2]][0][2]}'>{$item[0]}</a>";
178                         } elseif ( ! empty( $item[2] ) && current_user_can( $item[1] ) ) {
179                                 $menu_file = $item[2];
180
181                                 if ( current_user_can( 'customize' ) ) {
182                                         if ( 'custom-header' === $menu_file ) {
183                                                 $current_theme_actions[] = "<a class='button button-secondary hide-if-no-customize$class' href='customize.php?autofocus[control]=header_image'>{$item[0]}</a>";
184                                         } elseif ( 'custom-background' === $menu_file ) {
185                                                 $current_theme_actions[] = "<a class='button button-secondary hide-if-no-customize$class' href='customize.php?autofocus[control]=background_image'>{$item[0]}</a>";
186                                         }
187                                 }
188
189                                 if ( false !== ( $pos = strpos( $menu_file, '?' ) ) ) {
190                                         $menu_file = substr( $menu_file, 0, $pos );
191                                 }
192
193                                 if ( file_exists( ABSPATH . "wp-admin/$menu_file" ) ) {
194                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='{$item[2]}'>{$item[0]}</a>";
195                                 } else {
196                                         $current_theme_actions[] = "<a class='button button-secondary$class' href='themes.php?page={$item[2]}'>{$item[0]}</a>";
197                                 }
198                         }
199                 }
200         }
201
202 ?>
203
204 <div class="theme-browser">
205         <div class="themes">
206
207 <?php
208 /*
209  * This PHP is synchronized with the tmpl-theme template below!
210  */
211
212 foreach ( $themes as $theme ) :
213         $aria_action = esc_attr( $theme['id'] . '-action' );
214         $aria_name   = esc_attr( $theme['id'] . '-name' );
215         ?>
216 <div class="theme<?php if ( $theme['active'] ) echo ' active'; ?>" tabindex="0" aria-describedby="<?php echo $aria_action . ' ' . $aria_name; ?>">
217         <?php if ( ! empty( $theme['screenshot'][0] ) ) { ?>
218                 <div class="theme-screenshot">
219                         <img src="<?php echo $theme['screenshot'][0]; ?>" alt="" />
220                 </div>
221         <?php } else { ?>
222                 <div class="theme-screenshot blank"></div>
223         <?php } ?>
224         <span class="more-details" id="<?php echo $aria_action; ?>"><?php _e( 'Theme Details' ); ?></span>
225         <div class="theme-author"><?php printf( __( 'By %s' ), $theme['author'] ); ?></div>
226
227         <?php if ( $theme['active'] ) { ?>
228                 <h3 class="theme-name" id="<?php echo $aria_name; ?>">
229                         <?php
230                         /* translators: %s: theme name */
231                         printf( __( '<span>Active:</span> %s' ), $theme['name'] );
232                         ?>
233                 </h3>
234         <?php } else { ?>
235                 <h3 class="theme-name" id="<?php echo $aria_name; ?>"><?php echo $theme['name']; ?></h3>
236         <?php } ?>
237
238         <div class="theme-actions">
239
240         <?php if ( $theme['active'] ) { ?>
241                 <?php if ( $theme['actions']['customize'] && current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { ?>
242                         <a class="button button-primary customize load-customize hide-if-no-customize" href="<?php echo $theme['actions']['customize']; ?>"><?php _e( 'Customize' ); ?></a>
243                 <?php } ?>
244         <?php } else { ?>
245                 <a class="button button-secondary activate" href="<?php echo $theme['actions']['activate']; ?>"><?php _e( 'Activate' ); ?></a>
246                 <?php if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { ?>
247                         <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme['actions']['customize']; ?>"><?php _e( 'Live Preview' ); ?></a>
248                 <?php } ?>
249         <?php } ?>
250
251         </div>
252
253         <?php if ( $theme['hasUpdate'] ) { ?>
254                 <div class="theme-update"><?php _e( 'Update Available' ); ?></div>
255         <?php } ?>
256 </div>
257 <?php endforeach; ?>
258         <br class="clear" />
259         </div>
260 </div>
261 <div class="theme-overlay"></div>
262
263 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>
264
265 <?php
266 // List broken themes, if any.
267 if ( ! is_multisite() && current_user_can('edit_themes') && $broken_themes = wp_get_themes( array( 'errors' => true ) ) ) {
268 ?>
269
270 <div class="broken-themes">
271 <h3><?php _e('Broken Themes'); ?></h3>
272 <p><?php _e('The following themes are installed but incomplete. Themes must have a stylesheet and a template.'); ?></p>
273
274 <?php
275 $can_delete = current_user_can( 'delete_themes' );
276 ?>
277 <table>
278         <tr>
279                 <th><?php _ex('Name', 'theme name'); ?></th>
280                 <th><?php _e('Description'); ?></th>
281                 <?php if ( $can_delete ) { ?>
282                         <td></td>
283                 <?php } ?>
284                 </tr>
285         </tr>
286         <?php foreach ( $broken_themes as $broken_theme ) : ?>
287                 <tr>
288                         <td><?php echo $broken_theme->get( 'Name' ) ? $broken_theme->display( 'Name' ) : $broken_theme->get_stylesheet(); ?></td>
289                         <td><?php echo $broken_theme->errors()->get_error_message(); ?></td>
290                         <?php
291                         if ( $can_delete ) {
292                                 $stylesheet = $broken_theme->get_stylesheet();
293                                 $delete_url = add_query_arg( array(
294                                         'action'     => 'delete',
295                                         'stylesheet' => urlencode( $stylesheet ),
296                                 ), admin_url( 'themes.php' ) );
297                                 $delete_url = wp_nonce_url( $delete_url, 'delete-theme_' . $stylesheet );
298                                 ?>
299                                 <td><a href="<?php echo esc_url( $delete_url ); ?>" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a></td>
300                                 <?php
301                         }
302                         ?>
303                 </tr>
304         <?php endforeach; ?>
305 </table>
306 </div>
307
308 <?php
309 }
310 ?>
311 </div><!-- .wrap -->
312
313 <?php
314 /*
315  * The tmpl-theme template is synchronized with PHP above!
316  */
317 ?>
318 <script id="tmpl-theme" type="text/template">
319         <# if ( data.screenshot[0] ) { #>
320                 <div class="theme-screenshot">
321                         <img src="{{ data.screenshot[0] }}" alt="" />
322                 </div>
323         <# } else { #>
324                 <div class="theme-screenshot blank"></div>
325         <# } #>
326         <span class="more-details" id="{{ data.id }}-action"><?php _e( 'Theme Details' ); ?></span>
327         <div class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.author }}}' ); ?></div>
328
329         <# if ( data.active ) { #>
330                 <h3 class="theme-name" id="{{ data.id }}-name">
331                         <?php
332                         /* translators: %s: theme name */
333                         printf( __( '<span>Active:</span> %s' ), '{{{ data.name }}}' );
334                         ?>
335                 </h3>
336         <# } else { #>
337                 <h3 class="theme-name" id="{{ data.id }}-name">{{{ data.name }}}</h3>
338         <# } #>
339
340         <div class="theme-actions">
341
342         <# if ( data.active ) { #>
343                 <# if ( data.actions.customize ) { #>
344                         <a class="button button-primary customize load-customize hide-if-no-customize" href="{{ data.actions.customize }}"><?php _e( 'Customize' ); ?></a>
345                 <# } #>
346         <# } else { #>
347                 <a class="button button-secondary activate" href="{{{ data.actions.activate }}}"><?php _e( 'Activate' ); ?></a>
348                 <a class="button button-primary load-customize hide-if-no-customize" href="{{{ data.actions.customize }}}"><?php _e( 'Live Preview' ); ?></a>
349         <# } #>
350
351         </div>
352
353         <# if ( data.hasUpdate ) { #>
354                 <div class="theme-update"><?php _e( 'Update Available' ); ?></div>
355         <# } #>
356 </script>
357
358 <script id="tmpl-theme-single" type="text/template">
359         <div class="theme-backdrop"></div>
360         <div class="theme-wrap">
361                 <div class="theme-header">
362                         <button class="left dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show previous theme' ); ?></span></button>
363                         <button class="right dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Show next theme' ); ?></span></button>
364                         <button class="close dashicons dashicons-no"><span class="screen-reader-text"><?php _e( 'Close details dialog' ); ?></span></button>
365                 </div>
366                 <div class="theme-about">
367                         <div class="theme-screenshots">
368                         <# if ( data.screenshot[0] ) { #>
369                                 <div class="screenshot"><img src="{{ data.screenshot[0] }}" alt="" /></div>
370                         <# } else { #>
371                                 <div class="screenshot blank"></div>
372                         <# } #>
373                         </div>
374
375                         <div class="theme-info">
376                                 <# if ( data.active ) { #>
377                                         <span class="current-label"><?php _e( 'Current Theme' ); ?></span>
378                                 <# } #>
379                                 <h3 class="theme-name">{{{ data.name }}}<span class="theme-version"><?php printf( __( 'Version: %s' ), '{{ data.version }}' ); ?></span></h3>
380                                 <h4 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h4>
381
382                                 <# if ( data.hasUpdate ) { #>
383                                 <div class="theme-update-message">
384                                         <h4 class="theme-update"><?php _e( 'Update Available' ); ?></h4>
385                                         {{{ data.update }}}
386                                 </div>
387                                 <# } #>
388                                 <p class="theme-description">{{{ data.description }}}</p>
389
390                                 <# if ( data.parent ) { #>
391                                         <p class="parent-theme"><?php printf( __( 'This is a child theme of %s.' ), '<strong>{{{ data.parent }}}</strong>' ); ?></p>
392                                 <# } #>
393
394                                 <# if ( data.tags ) { #>
395                                         <p class="theme-tags"><span><?php _e( 'Tags:' ); ?></span> {{{ data.tags }}}</p>
396                                 <# } #>
397                         </div>
398                 </div>
399
400                 <div class="theme-actions">
401                         <div class="active-theme">
402                                 <a href="{{{ data.actions.customize }}}" class="button button-primary customize load-customize hide-if-no-customize"><?php _e( 'Customize' ); ?></a>
403                                 <?php echo implode( ' ', $current_theme_actions ); ?>
404                         </div>
405                         <div class="inactive-theme">
406                                 <# if ( data.actions.activate ) { #>
407                                         <a href="{{{ data.actions.activate }}}" class="button button-secondary activate"><?php _e( 'Activate' ); ?></a>
408                                 <# } #>
409                                 <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live Preview' ); ?></a>
410                         </div>
411
412                         <# if ( ! data.active && data.actions['delete'] ) { #>
413                                 <a href="{{{ data.actions['delete'] }}}" class="button button-secondary delete-theme"><?php _e( 'Delete' ); ?></a>
414                         <# } #>
415                 </div>
416         </div>
417 </script>
418
419 <?php require( ABSPATH . 'wp-admin/admin-footer.php' );