PageRenderTime 52ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-admin/themes.php

https://bitbucket.org/zachisit/zachis.it-m
PHP | 303 lines | 249 code | 44 blank | 10 comment | 60 complexity | 1efa646e4618abd6032bae44eab64235 MD5 | raw file
  1. <?php
  2. /**
  3. * Themes administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once('./admin.php');
  10. if ( !current_user_can('switch_themes') && !current_user_can('edit_theme_options') )
  11. wp_die( __( 'Cheatin&#8217; uh?' ) );
  12. $wp_list_table = _get_list_table('WP_Themes_List_Table');
  13. if ( current_user_can( 'switch_themes' ) && isset($_GET['action'] ) ) {
  14. if ( 'activate' == $_GET['action'] ) {
  15. check_admin_referer('switch-theme_' . $_GET['stylesheet']);
  16. $theme = wp_get_theme( $_GET['stylesheet'] );
  17. if ( ! $theme->exists() || ! $theme->is_allowed() )
  18. wp_die( __( 'Cheatin&#8217; uh?' ) );
  19. switch_theme( $theme->get_template(), $theme->get_stylesheet() );
  20. wp_redirect( admin_url('themes.php?activated=true') );
  21. exit;
  22. } elseif ( 'delete' == $_GET['action'] ) {
  23. check_admin_referer('delete-theme_' . $_GET['stylesheet']);
  24. $theme = wp_get_theme( $_GET['stylesheet'] );
  25. if ( !current_user_can('delete_themes') || ! $theme->exists() )
  26. wp_die( __( 'Cheatin&#8217; uh?' ) );
  27. delete_theme($_GET['stylesheet']);
  28. wp_redirect( admin_url('themes.php?deleted=true') );
  29. exit;
  30. }
  31. }
  32. $wp_list_table->prepare_items();
  33. $title = __('Manage Themes');
  34. $parent_file = 'themes.php';
  35. if ( current_user_can( 'switch_themes' ) ) :
  36. $help_manage = '<p>' . __('Aside from the default theme included with your WordPress installation, themes are designed and developed by third parties.') . '</p>' .
  37. '<p>' . __('You can see your active theme at the top of the screen. Below are the other themes you have installed that are not currently in use. You can see what your site would look like with one of these themes by clicking the Live Preview link (see "Previewing and Customizing" help tab). To change themes, click the Activate link.') . '</p>';
  38. get_current_screen()->add_help_tab( array(
  39. 'id' => 'overview',
  40. 'title' => __('Overview'),
  41. 'content' => $help_manage
  42. ) );
  43. if ( current_user_can( 'install_themes' ) ) {
  44. if ( is_multisite() ) {
  45. $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>';
  46. } else {
  47. $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Install Themes&#8221; tab 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!'), 'http://wordpress.org/extend/themes/' ) . '</p>';
  48. }
  49. get_current_screen()->add_help_tab( array(
  50. 'id' => 'adding-themes',
  51. 'title' => __('Adding Themes'),
  52. 'content' => $help_install
  53. ) );
  54. }
  55. add_thickbox();
  56. endif; // switch_themes
  57. if ( current_user_can( 'edit_theme_options' ) ) {
  58. $help_customize =
  59. '<p>' . __('Click on the "Live Preview" link under any theme to preview that theme and change theme options in a separate, full-screen view. Any installed theme can be previewed and customized in this way.') . '</p>'.
  60. '<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.') . '</p>' .
  61. '<p>' . __('In the left-hand pane you can edit the theme settings. The settings will 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 at the top of the left-hand pane.') . '</p>' .
  62. '<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>';
  63. get_current_screen()->add_help_tab( array(
  64. 'id' => 'customize-preview-themes',
  65. 'title' => __('Previewing and Customizing'),
  66. 'content' => $help_customize
  67. ) );
  68. }
  69. get_current_screen()->set_help_sidebar(
  70. '<p><strong>' . __('For more information:') . '</strong></p>' .
  71. '<p>' . __('<a href="http://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>') . '</p>' .
  72. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  73. );
  74. wp_enqueue_script( 'theme' );
  75. wp_enqueue_script( 'customize-loader' );
  76. require_once('./admin-header.php');
  77. ?>
  78. <div class="wrap"><?php
  79. screen_icon();
  80. if ( ! is_multisite() && current_user_can( 'install_themes' ) ) : ?>
  81. <h2 class="nav-tab-wrapper">
  82. <a href="themes.php" class="nav-tab nav-tab-active"><?php echo esc_html( $title ); ?></a><a href="<?php echo admin_url( 'theme-install.php'); ?>" class="nav-tab"><?php echo esc_html_x('Install Themes', 'theme'); ?></a>
  83. <?php else : ?>
  84. <h2><?php echo esc_html( $title ); ?>
  85. <?php endif; ?>
  86. </h2>
  87. <?php
  88. if ( ! validate_current_theme() || isset( $_GET['broken'] ) ) : ?>
  89. <div id="message1" class="updated"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div>
  90. <?php elseif ( isset($_GET['activated']) ) :
  91. if ( isset( $_GET['previewed'] ) ) { ?>
  92. <div id="message2" class="updated"><p><?php printf( __( 'Settings saved and theme activated. <a href="%s">Visit site</a>.' ), home_url( '/' ) ); ?></p></div>
  93. <?php } elseif ( isset($wp_registered_sidebars) && count( (array) $wp_registered_sidebars ) && current_user_can('edit_theme_options') ) { ?>
  94. <div id="message2" class="updated"><p><?php printf( __('New theme activated. This theme supports widgets, please visit the <a href="%s">widgets settings</a> screen to configure them.'), admin_url( 'widgets.php' ) ); ?></p></div><?php
  95. } else { ?>
  96. <div id="message2" class="updated"><p><?php printf( __( 'New theme activated. <a href="%s">Visit site</a>' ), home_url( '/' ) ); ?></p></div><?php
  97. }
  98. elseif ( isset($_GET['deleted']) ) : ?>
  99. <div id="message3" class="updated"><p><?php _e('Theme deleted.') ?></p></div>
  100. <?php
  101. endif;
  102. $ct = wp_get_theme();
  103. $screenshot = $ct->get_screenshot();
  104. $class = $screenshot ? 'has-screenshot' : '';
  105. $customize_title = sprintf( __( 'Customize &#8220;%s&#8221;' ), $ct->display('Name') );
  106. ?>
  107. <div id="current-theme" class="<?php echo esc_attr( $class ); ?>">
  108. <?php if ( $screenshot ) : ?>
  109. <?php if ( current_user_can( 'edit_theme_options' ) ) : ?>
  110. <a href="<?php echo wp_customize_url(); ?>" class="load-customize hide-if-no-customize" title="<?php echo esc_attr( $customize_title ); ?>">
  111. <img src="<?php echo esc_url( $screenshot ); ?>" alt="<?php esc_attr_e( 'Current theme preview' ); ?>" />
  112. </a>
  113. <?php endif; ?>
  114. <img class="hide-if-customize" src="<?php echo esc_url( $screenshot ); ?>" alt="<?php esc_attr_e( 'Current theme preview' ); ?>" />
  115. <?php endif; ?>
  116. <h3><?php _e('Current Theme'); ?></h3>
  117. <h4>
  118. <?php echo $ct->display('Name'); ?>
  119. </h4>
  120. <div>
  121. <ul class="theme-info">
  122. <li><?php printf( __('By %s'), $ct->display('Author') ); ?></li>
  123. <li><?php printf( __('Version %s'), $ct->display('Version') ); ?></li>
  124. </ul>
  125. <p class="theme-description"><?php echo $ct->display('Description'); ?></p>
  126. <?php theme_update_available( $ct ); ?>
  127. </div>
  128. <?php
  129. // Pretend you didn't see this.
  130. $options = array();
  131. if ( is_array( $submenu ) && isset( $submenu['themes.php'] ) ) {
  132. foreach ( (array) $submenu['themes.php'] as $item) {
  133. $class = '';
  134. if ( 'themes.php' == $item[2] || 'theme-editor.php' == $item[2] )
  135. continue;
  136. // 0 = name, 1 = capability, 2 = file
  137. if ( ( strcmp($self, $item[2]) == 0 && empty($parent_file)) || ($parent_file && ($item[2] == $parent_file)) )
  138. $class = ' class="current"';
  139. if ( !empty($submenu[$item[2]]) ) {
  140. $submenu[$item[2]] = array_values($submenu[$item[2]]); // Re-index.
  141. $menu_hook = get_plugin_page_hook($submenu[$item[2]][0][2], $item[2]);
  142. if ( file_exists(WP_PLUGIN_DIR . "/{$submenu[$item[2]][0][2]}") || !empty($menu_hook))
  143. $options[] = "<a href='admin.php?page={$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
  144. else
  145. $options[] = "<a href='{$submenu[$item[2]][0][2]}'$class>{$item[0]}</a>";
  146. } else if ( current_user_can($item[1]) ) {
  147. if ( file_exists(ABSPATH . 'wp-admin/' . $item[2]) ) {
  148. $options[] = "<a href='{$item[2]}'$class>{$item[0]}</a>";
  149. } else {
  150. $options[] = "<a href='themes.php?page={$item[2]}'$class>{$item[0]}</a>";
  151. }
  152. }
  153. }
  154. }
  155. if ( $options || current_user_can( 'edit_theme_options' ) ) :
  156. ?>
  157. <div class="theme-options">
  158. <?php if ( current_user_can( 'edit_theme_options' ) ) : ?>
  159. <a id="customize-current-theme-link" href="<?php echo wp_customize_url(); ?>" class="load-customize hide-if-no-customize" title="<?php echo esc_attr( $customize_title ); ?>"><?php _e( 'Customize' ); ?></a>
  160. <?php
  161. endif; // edit_theme_options
  162. if ( $options ) :
  163. ?>
  164. <span><?php _e( 'Options:' )?></span>
  165. <ul>
  166. <?php foreach ( $options as $option ) : ?>
  167. <li><?php echo $option; ?></li>
  168. <?php endforeach; ?>
  169. </ul>
  170. </div>
  171. <?php
  172. endif; // options
  173. endif; // options || edit_theme_options
  174. ?>
  175. </div>
  176. <br class="clear" />
  177. <?php
  178. if ( ! current_user_can( 'switch_themes' ) ) {
  179. echo '</div>';
  180. require( './admin-footer.php' );
  181. exit;
  182. }
  183. ?>
  184. <form class="search-form filter-form" action="" method="get">
  185. <h3 class="available-themes"><?php _e('Available Themes'); ?></h3>
  186. <?php if ( !empty( $_REQUEST['s'] ) || !empty( $_REQUEST['features'] ) || $wp_list_table->has_items() ) : ?>
  187. <p class="search-box">
  188. <label class="screen-reader-text" for="theme-search-input"><?php _e('Search Installed Themes'); ?>:</label>
  189. <input type="search" id="theme-search-input" name="s" value="<?php _admin_search_query(); ?>" />
  190. <?php submit_button( __( 'Search Installed Themes' ), 'button', false, false, array( 'id' => 'search-submit' ) ); ?>
  191. <a id="filter-click" href="?filter=1"><?php _e( 'Feature Filter' ); ?></a>
  192. </p>
  193. <div id="filter-box" style="<?php if ( empty($_REQUEST['filter']) ) echo 'display: none;'; ?>">
  194. <?php $feature_list = get_theme_feature_list(); ?>
  195. <div class="feature-filter">
  196. <p class="install-help"><?php _e('Theme filters') ?></p>
  197. <?php if ( !empty( $_REQUEST['filter'] ) ) : ?>
  198. <input type="hidden" name="filter" value="1" />
  199. <?php endif; ?>
  200. <?php foreach ( $feature_list as $feature_name => $features ) :
  201. $feature_name = esc_html( $feature_name ); ?>
  202. <div class="feature-container">
  203. <div class="feature-name"><?php echo $feature_name ?></div>
  204. <ol class="feature-group">
  205. <?php foreach ( $features as $key => $feature ) :
  206. $feature_name = $feature;
  207. $feature_name = esc_html( $feature_name );
  208. $feature = esc_attr( $feature );
  209. ?>
  210. <li>
  211. <input type="checkbox" name="features[]" id="feature-id-<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( in_array( $key, $wp_list_table->features ) ); ?>/>
  212. <label for="feature-id-<?php echo $key; ?>"><?php echo $feature_name; ?></label>
  213. </li>
  214. <?php endforeach; ?>
  215. </ol>
  216. </div>
  217. <?php endforeach; ?>
  218. <div class="feature-container">
  219. <?php submit_button( __( 'Apply Filters' ), 'button-secondary submitter', false, false, array( 'id' => 'filter-submit' ) ); ?>
  220. &nbsp;
  221. <a id="mini-filter-click" href="<?php echo esc_url( remove_query_arg( array('filter', 'features', 'submit') ) ); ?>"><?php _e( 'Close filters' )?></a>
  222. </div>
  223. <br/>
  224. </div>
  225. <br class="clear"/>
  226. </div>
  227. <?php endif; ?>
  228. <br class="clear" />
  229. <?php $wp_list_table->display(); ?>
  230. </form>
  231. <br class="clear" />
  232. <?php
  233. // List broken themes, if any.
  234. if ( ! is_multisite() && current_user_can('edit_themes') && $broken_themes = wp_get_themes( array( 'errors' => true ) ) ) {
  235. ?>
  236. <h3><?php _e('Broken Themes'); ?></h3>
  237. <p><?php _e('The following themes are installed but incomplete. Themes must have a stylesheet and a template.'); ?></p>
  238. <table id="broken-themes">
  239. <tr>
  240. <th><?php _ex('Name', 'theme name'); ?></th>
  241. <th><?php _e('Description'); ?></th>
  242. </tr>
  243. <?php
  244. $alt = '';
  245. foreach ( $broken_themes as $broken_theme ) {
  246. $alt = ('class="alternate"' == $alt) ? '' : 'class="alternate"';
  247. echo "
  248. <tr $alt>
  249. <td>" . $broken_theme->get('Name') ."</td>
  250. <td>" . $broken_theme->errors()->get_error_message() . "</td>
  251. </tr>";
  252. }
  253. ?>
  254. </table>
  255. <?php
  256. }
  257. ?>
  258. </div>
  259. <?php require('./admin-footer.php'); ?>