25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

733 satır
20 KiB

  1. <?php
  2. /**
  3. * List Table API: WP_MS_Themes_List_Table class
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. * @since 3.1.0
  8. */
  9. /**
  10. * Core class used to implement displaying themes in a list table for the network admin.
  11. *
  12. * @since 3.1.0
  13. * @access private
  14. *
  15. * @see WP_List_Table
  16. */
  17. class WP_MS_Themes_List_Table extends WP_List_Table {
  18. public $site_id;
  19. public $is_site_themes;
  20. private $has_items;
  21. /**
  22. * Constructor.
  23. *
  24. * @since 3.1.0
  25. * @access public
  26. *
  27. * @see WP_List_Table::__construct() for more information on default arguments.
  28. *
  29. * @global string $status
  30. * @global int $page
  31. *
  32. * @param array $args An associative array of arguments.
  33. */
  34. public function __construct( $args = array() ) {
  35. global $status, $page;
  36. parent::__construct( array(
  37. 'plural' => 'themes',
  38. 'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
  39. ) );
  40. $status = isset( $_REQUEST['theme_status'] ) ? $_REQUEST['theme_status'] : 'all';
  41. if ( !in_array( $status, array( 'all', 'enabled', 'disabled', 'upgrade', 'search', 'broken' ) ) )
  42. $status = 'all';
  43. $page = $this->get_pagenum();
  44. $this->is_site_themes = ( 'site-themes-network' === $this->screen->id ) ? true : false;
  45. if ( $this->is_site_themes )
  46. $this->site_id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : 0;
  47. }
  48. /**
  49. *
  50. * @return array
  51. */
  52. protected function get_table_classes() {
  53. // todo: remove and add CSS for .themes
  54. return array( 'widefat', 'plugins' );
  55. }
  56. /**
  57. *
  58. * @return bool
  59. */
  60. public function ajax_user_can() {
  61. if ( $this->is_site_themes )
  62. return current_user_can( 'manage_sites' );
  63. else
  64. return current_user_can( 'manage_network_themes' );
  65. }
  66. /**
  67. *
  68. * @global string $status
  69. * @global array $totals
  70. * @global int $page
  71. * @global string $orderby
  72. * @global string $order
  73. * @global string $s
  74. */
  75. public function prepare_items() {
  76. global $status, $totals, $page, $orderby, $order, $s;
  77. wp_reset_vars( array( 'orderby', 'order', 's' ) );
  78. $themes = array(
  79. /**
  80. * Filters the full array of WP_Theme objects to list in the Multisite
  81. * themes list table.
  82. *
  83. * @since 3.1.0
  84. *
  85. * @param array $all An array of WP_Theme objects to display in the list table.
  86. */
  87. 'all' => apply_filters( 'all_themes', wp_get_themes() ),
  88. 'search' => array(),
  89. 'enabled' => array(),
  90. 'disabled' => array(),
  91. 'upgrade' => array(),
  92. 'broken' => $this->is_site_themes ? array() : wp_get_themes( array( 'errors' => true ) ),
  93. );
  94. if ( $this->is_site_themes ) {
  95. $themes_per_page = $this->get_items_per_page( 'site_themes_network_per_page' );
  96. $allowed_where = 'site';
  97. } else {
  98. $themes_per_page = $this->get_items_per_page( 'themes_network_per_page' );
  99. $allowed_where = 'network';
  100. }
  101. $maybe_update = current_user_can( 'update_themes' ) && ! $this->is_site_themes && $current = get_site_transient( 'update_themes' );
  102. foreach ( (array) $themes['all'] as $key => $theme ) {
  103. if ( $this->is_site_themes && $theme->is_allowed( 'network' ) ) {
  104. unset( $themes['all'][ $key ] );
  105. continue;
  106. }
  107. if ( $maybe_update && isset( $current->response[ $key ] ) ) {
  108. $themes['all'][ $key ]->update = true;
  109. $themes['upgrade'][ $key ] = $themes['all'][ $key ];
  110. }
  111. $filter = $theme->is_allowed( $allowed_where, $this->site_id ) ? 'enabled' : 'disabled';
  112. $themes[ $filter ][ $key ] = $themes['all'][ $key ];
  113. }
  114. if ( $s ) {
  115. $status = 'search';
  116. $themes['search'] = array_filter( array_merge( $themes['all'], $themes['broken'] ), array( $this, '_search_callback' ) );
  117. }
  118. $totals = array();
  119. foreach ( $themes as $type => $list )
  120. $totals[ $type ] = count( $list );
  121. if ( empty( $themes[ $status ] ) && !in_array( $status, array( 'all', 'search' ) ) )
  122. $status = 'all';
  123. $this->items = $themes[ $status ];
  124. WP_Theme::sort_by_name( $this->items );
  125. $this->has_items = ! empty( $themes['all'] );
  126. $total_this_page = $totals[ $status ];
  127. wp_localize_script( 'updates', '_wpUpdatesItemCounts', array(
  128. 'themes' => $totals,
  129. 'totals' => wp_get_update_data(),
  130. ) );
  131. if ( $orderby ) {
  132. $orderby = ucfirst( $orderby );
  133. $order = strtoupper( $order );
  134. if ( $orderby === 'Name' ) {
  135. if ( 'ASC' === $order ) {
  136. $this->items = array_reverse( $this->items );
  137. }
  138. } else {
  139. uasort( $this->items, array( $this, '_order_callback' ) );
  140. }
  141. }
  142. $start = ( $page - 1 ) * $themes_per_page;
  143. if ( $total_this_page > $themes_per_page )
  144. $this->items = array_slice( $this->items, $start, $themes_per_page, true );
  145. $this->set_pagination_args( array(
  146. 'total_items' => $total_this_page,
  147. 'per_page' => $themes_per_page,
  148. ) );
  149. }
  150. /**
  151. * @staticvar string $term
  152. * @param WP_Theme $theme
  153. * @return bool
  154. */
  155. public function _search_callback( $theme ) {
  156. static $term = null;
  157. if ( is_null( $term ) )
  158. $term = wp_unslash( $_REQUEST['s'] );
  159. foreach ( array( 'Name', 'Description', 'Author', 'Author', 'AuthorURI' ) as $field ) {
  160. // Don't mark up; Do translate.
  161. if ( false !== stripos( $theme->display( $field, false, true ), $term ) )
  162. return true;
  163. }
  164. if ( false !== stripos( $theme->get_stylesheet(), $term ) )
  165. return true;
  166. if ( false !== stripos( $theme->get_template(), $term ) )
  167. return true;
  168. return false;
  169. }
  170. // Not used by any core columns.
  171. /**
  172. * @global string $orderby
  173. * @global string $order
  174. * @param array $theme_a
  175. * @param array $theme_b
  176. * @return int
  177. */
  178. public function _order_callback( $theme_a, $theme_b ) {
  179. global $orderby, $order;
  180. $a = $theme_a[ $orderby ];
  181. $b = $theme_b[ $orderby ];
  182. if ( $a == $b )
  183. return 0;
  184. if ( 'DESC' === $order )
  185. return ( $a < $b ) ? 1 : -1;
  186. else
  187. return ( $a < $b ) ? -1 : 1;
  188. }
  189. /**
  190. * @access public
  191. */
  192. public function no_items() {
  193. if ( $this->has_items ) {
  194. _e( 'No themes found.' );
  195. } else {
  196. _e( 'You do not appear to have any themes available at this time.' );
  197. }
  198. }
  199. /**
  200. *
  201. * @return array
  202. */
  203. public function get_columns() {
  204. return array(
  205. 'cb' => '<input type="checkbox" />',
  206. 'name' => __( 'Theme' ),
  207. 'description' => __( 'Description' ),
  208. );
  209. }
  210. /**
  211. *
  212. * @return array
  213. */
  214. protected function get_sortable_columns() {
  215. return array(
  216. 'name' => 'name',
  217. );
  218. }
  219. /**
  220. * Gets the name of the primary column.
  221. *
  222. * @since 4.3.0
  223. * @access protected
  224. *
  225. * @return string Unalterable name of the primary column name, in this case, 'name'.
  226. */
  227. protected function get_primary_column_name() {
  228. return 'name';
  229. }
  230. /**
  231. *
  232. * @global array $totals
  233. * @global string $status
  234. * @return array
  235. */
  236. protected function get_views() {
  237. global $totals, $status;
  238. $status_links = array();
  239. foreach ( $totals as $type => $count ) {
  240. if ( !$count )
  241. continue;
  242. switch ( $type ) {
  243. case 'all':
  244. $text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'themes' );
  245. break;
  246. case 'enabled':
  247. $text = _n( 'Enabled <span class="count">(%s)</span>', 'Enabled <span class="count">(%s)</span>', $count );
  248. break;
  249. case 'disabled':
  250. $text = _n( 'Disabled <span class="count">(%s)</span>', 'Disabled <span class="count">(%s)</span>', $count );
  251. break;
  252. case 'upgrade':
  253. $text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count );
  254. break;
  255. case 'broken' :
  256. $text = _n( 'Broken <span class="count">(%s)</span>', 'Broken <span class="count">(%s)</span>', $count );
  257. break;
  258. }
  259. if ( $this->is_site_themes )
  260. $url = 'site-themes.php?id=' . $this->site_id;
  261. else
  262. $url = 'themes.php';
  263. if ( 'search' != $type ) {
  264. $status_links[$type] = sprintf( "<a href='%s' %s>%s</a>",
  265. esc_url( add_query_arg('theme_status', $type, $url) ),
  266. ( $type === $status ) ? ' class="current"' : '',
  267. sprintf( $text, number_format_i18n( $count ) )
  268. );
  269. }
  270. }
  271. return $status_links;
  272. }
  273. /**
  274. * @global string $status
  275. *
  276. * @return array
  277. */
  278. protected function get_bulk_actions() {
  279. global $status;
  280. $actions = array();
  281. if ( 'enabled' != $status )
  282. $actions['enable-selected'] = $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' );
  283. if ( 'disabled' != $status )
  284. $actions['disable-selected'] = $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' );
  285. if ( ! $this->is_site_themes ) {
  286. if ( current_user_can( 'update_themes' ) )
  287. $actions['update-selected'] = __( 'Update' );
  288. if ( current_user_can( 'delete_themes' ) )
  289. $actions['delete-selected'] = __( 'Delete' );
  290. }
  291. return $actions;
  292. }
  293. /**
  294. * @access public
  295. */
  296. public function display_rows() {
  297. foreach ( $this->items as $theme )
  298. $this->single_row( $theme );
  299. }
  300. /**
  301. * Handles the checkbox column output.
  302. *
  303. * @since 4.3.0
  304. * @access public
  305. *
  306. * @param WP_Theme $theme The current WP_Theme object.
  307. */
  308. public function column_cb( $theme ) {
  309. $checkbox_id = 'checkbox_' . md5( $theme->get('Name') );
  310. ?>
  311. <input type="checkbox" name="checked[]" value="<?php echo esc_attr( $theme->get_stylesheet() ) ?>" id="<?php echo $checkbox_id ?>" />
  312. <label class="screen-reader-text" for="<?php echo $checkbox_id ?>" ><?php _e( 'Select' ) ?> <?php echo $theme->display( 'Name' ) ?></label>
  313. <?php
  314. }
  315. /**
  316. * Handles the name column output.
  317. *
  318. * @since 4.3.0
  319. * @access public
  320. *
  321. * @global string $status
  322. * @global int $page
  323. * @global string $s
  324. *
  325. * @param WP_Theme $theme The current WP_Theme object.
  326. */
  327. public function column_name( $theme ) {
  328. global $status, $page, $s;
  329. $context = $status;
  330. if ( $this->is_site_themes ) {
  331. $url = "site-themes.php?id={$this->site_id}&amp;";
  332. $allowed = $theme->is_allowed( 'site', $this->site_id );
  333. } else {
  334. $url = 'themes.php?';
  335. $allowed = $theme->is_allowed( 'network' );
  336. }
  337. // Pre-order.
  338. $actions = array(
  339. 'enable' => '',
  340. 'disable' => '',
  341. 'edit' => '',
  342. 'delete' => ''
  343. );
  344. $stylesheet = $theme->get_stylesheet();
  345. $theme_key = urlencode( $stylesheet );
  346. if ( ! $allowed ) {
  347. if ( ! $theme->errors() ) {
  348. $url = add_query_arg( array(
  349. 'action' => 'enable',
  350. 'theme' => $theme_key,
  351. 'paged' => $page,
  352. 's' => $s,
  353. ), $url );
  354. if ( $this->is_site_themes ) {
  355. /* translators: %s: theme name */
  356. $aria_label = sprintf( __( 'Enable %s' ), $theme->display( 'Name' ) );
  357. } else {
  358. /* translators: %s: theme name */
  359. $aria_label = sprintf( __( 'Network Enable %s' ), $theme->display( 'Name' ) );
  360. }
  361. $actions['enable'] = sprintf( '<a href="%s" class="edit" aria-label="%s">%s</a>',
  362. esc_url( wp_nonce_url( $url, 'enable-theme_' . $stylesheet ) ),
  363. esc_attr( $aria_label ),
  364. ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' ) )
  365. );
  366. }
  367. } else {
  368. $url = add_query_arg( array(
  369. 'action' => 'disable',
  370. 'theme' => $theme_key,
  371. 'paged' => $page,
  372. 's' => $s,
  373. ), $url );
  374. if ( $this->is_site_themes ) {
  375. /* translators: %s: theme name */
  376. $aria_label = sprintf( __( 'Disable %s' ), $theme->display( 'Name' ) );
  377. } else {
  378. /* translators: %s: theme name */
  379. $aria_label = sprintf( __( 'Network Disable %s' ), $theme->display( 'Name' ) );
  380. }
  381. $actions['disable'] = sprintf( '<a href="%s" aria-label="%s">%s</a>',
  382. esc_url( wp_nonce_url( $url, 'disable-theme_' . $stylesheet ) ),
  383. esc_attr( $aria_label ),
  384. ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' ) )
  385. );
  386. }
  387. if ( current_user_can('edit_themes') ) {
  388. $url = add_query_arg( array(
  389. 'theme' => $theme_key,
  390. ), 'theme-editor.php' );
  391. /* translators: %s: theme name */
  392. $aria_label = sprintf( __( 'Open %s in the Theme Editor' ), $theme->display( 'Name' ) );
  393. $actions['edit'] = sprintf( '<a href="%s" class="edit" aria-label="%s">%s</a>',
  394. esc_url( $url ),
  395. esc_attr( $aria_label ),
  396. __( 'Edit' )
  397. );
  398. }
  399. if ( ! $allowed && current_user_can( 'delete_themes' ) && ! $this->is_site_themes && $stylesheet != get_option( 'stylesheet' ) && $stylesheet != get_option( 'template' ) ) {
  400. $url = add_query_arg( array(
  401. 'action' => 'delete-selected',
  402. 'checked[]' => $theme_key,
  403. 'theme_status' => $context,
  404. 'paged' => $page,
  405. 's' => $s,
  406. ), 'themes.php' );
  407. /* translators: %s: theme name */
  408. $aria_label = sprintf( _x( 'Delete %s', 'theme' ), $theme->display( 'Name' ) );
  409. $actions['delete'] = sprintf( '<a href="%s" class="delete" aria-label="%s">%s</a>',
  410. esc_url( wp_nonce_url( $url, 'bulk-themes' ) ),
  411. esc_attr( $aria_label ),
  412. __( 'Delete' )
  413. );
  414. }
  415. /**
  416. * Filters the action links displayed for each theme in the Multisite
  417. * themes list table.
  418. *
  419. * The action links displayed are determined by the theme's status, and
  420. * which Multisite themes list table is being displayed - the Network
  421. * themes list table (themes.php), which displays all installed themes,
  422. * or the Site themes list table (site-themes.php), which displays the
  423. * non-network enabled themes when editing a site in the Network admin.
  424. *
  425. * The default action links for the Network themes list table include
  426. * 'Network Enable', 'Network Disable', 'Edit', and 'Delete'.
  427. *
  428. * The default action links for the Site themes list table include
  429. * 'Enable', 'Disable', and 'Edit'.
  430. *
  431. * @since 2.8.0
  432. *
  433. * @param array $actions An array of action links.
  434. * @param WP_Theme $theme The current WP_Theme object.
  435. * @param string $context Status of the theme.
  436. */
  437. $actions = apply_filters( 'theme_action_links', array_filter( $actions ), $theme, $context );
  438. /**
  439. * Filters the action links of a specific theme in the Multisite themes
  440. * list table.
  441. *
  442. * The dynamic portion of the hook name, `$stylesheet`, refers to the
  443. * directory name of the theme, which in most cases is synonymous
  444. * with the template name.
  445. *
  446. * @since 3.1.0
  447. *
  448. * @param array $actions An array of action links.
  449. * @param WP_Theme $theme The current WP_Theme object.
  450. * @param string $context Status of the theme.
  451. */
  452. $actions = apply_filters( "theme_action_links_{$stylesheet}", $actions, $theme, $context );
  453. echo $this->row_actions( $actions, true );
  454. }
  455. /**
  456. * Handles the description column output.
  457. *
  458. * @since 4.3.0
  459. * @access public
  460. *
  461. * @global string $status
  462. * @global array $totals
  463. *
  464. * @param WP_Theme $theme The current WP_Theme object.
  465. */
  466. public function column_description( $theme ) {
  467. global $status, $totals;
  468. if ( $theme->errors() ) {
  469. $pre = $status === 'broken' ? __( 'Broken Theme:' ) . ' ' : '';
  470. echo '<p><strong class="error-message">' . $pre . $theme->errors()->get_error_message() . '</strong></p>';
  471. }
  472. if ( $this->is_site_themes ) {
  473. $allowed = $theme->is_allowed( 'site', $this->site_id );
  474. } else {
  475. $allowed = $theme->is_allowed( 'network' );
  476. }
  477. $class = ! $allowed ? 'inactive' : 'active';
  478. if ( ! empty( $totals['upgrade'] ) && ! empty( $theme->update ) )
  479. $class .= ' update';
  480. echo "<div class='theme-description'><p>" . $theme->display( 'Description' ) . "</p></div>
  481. <div class='$class second theme-version-author-uri'>";
  482. $stylesheet = $theme->get_stylesheet();
  483. $theme_meta = array();
  484. if ( $theme->get('Version') ) {
  485. $theme_meta[] = sprintf( __( 'Version %s' ), $theme->display('Version') );
  486. }
  487. $theme_meta[] = sprintf( __( 'By %s' ), $theme->display('Author') );
  488. if ( $theme->get('ThemeURI') ) {
  489. /* translators: %s: theme name */
  490. $aria_label = sprintf( __( 'Visit %s homepage' ), $theme->display( 'Name' ) );
  491. $theme_meta[] = sprintf( '<a href="%s" aria-label="%s">%s</a>',
  492. $theme->display( 'ThemeURI' ),
  493. esc_attr( $aria_label ),
  494. __( 'Visit Theme Site' )
  495. );
  496. }
  497. /**
  498. * Filters the array of row meta for each theme in the Multisite themes
  499. * list table.
  500. *
  501. * @since 3.1.0
  502. *
  503. * @param array $theme_meta An array of the theme's metadata,
  504. * including the version, author, and
  505. * theme URI.
  506. * @param string $stylesheet Directory name of the theme.
  507. * @param WP_Theme $theme WP_Theme object.
  508. * @param string $status Status of the theme.
  509. */
  510. $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status );
  511. echo implode( ' | ', $theme_meta );
  512. echo '</div>';
  513. }
  514. /**
  515. * Handles default column output.
  516. *
  517. * @since 4.3.0
  518. * @access public
  519. *
  520. * @param WP_Theme $theme The current WP_Theme object.
  521. * @param string $column_name The current column name.
  522. */
  523. public function column_default( $theme, $column_name ) {
  524. $stylesheet = $theme->get_stylesheet();
  525. /**
  526. * Fires inside each custom column of the Multisite themes list table.
  527. *
  528. * @since 3.1.0
  529. *
  530. * @param string $column_name Name of the column.
  531. * @param string $stylesheet Directory name of the theme.
  532. * @param WP_Theme $theme Current WP_Theme object.
  533. */
  534. do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );
  535. }
  536. /**
  537. * Handles the output for a single table row.
  538. *
  539. * @since 4.3.0
  540. * @access public
  541. *
  542. * @param WP_Theme $item The current WP_Theme object.
  543. */
  544. public function single_row_columns( $item ) {
  545. list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
  546. foreach ( $columns as $column_name => $column_display_name ) {
  547. $extra_classes = '';
  548. if ( in_array( $column_name, $hidden ) ) {
  549. $extra_classes .= ' hidden';
  550. }
  551. switch ( $column_name ) {
  552. case 'cb':
  553. echo '<th scope="row" class="check-column">';
  554. $this->column_cb( $item );
  555. echo '</th>';
  556. break;
  557. case 'name':
  558. echo "<td class='theme-title column-primary{$extra_classes}'><strong>" . $item->display('Name') . "</strong>";
  559. $this->column_name( $item );
  560. echo "</td>";
  561. break;
  562. case 'description':
  563. echo "<td class='column-description desc{$extra_classes}'>";
  564. $this->column_description( $item );
  565. echo '</td>';
  566. break;
  567. default:
  568. echo "<td class='$column_name column-$column_name{$extra_classes}'>";
  569. $this->column_default( $item, $column_name );
  570. echo "</td>";
  571. break;
  572. }
  573. }
  574. }
  575. /**
  576. * @global string $status
  577. * @global array $totals
  578. *
  579. * @param WP_Theme $theme
  580. */
  581. public function single_row( $theme ) {
  582. global $status, $totals;
  583. if ( $this->is_site_themes ) {
  584. $allowed = $theme->is_allowed( 'site', $this->site_id );
  585. } else {
  586. $allowed = $theme->is_allowed( 'network' );
  587. }
  588. $stylesheet = $theme->get_stylesheet();
  589. $class = ! $allowed ? 'inactive' : 'active';
  590. if ( ! empty( $totals['upgrade'] ) && ! empty( $theme->update ) ) {
  591. $class .= ' update';
  592. }
  593. printf( '<tr class="%s" data-slug="%s">',
  594. esc_attr( $class ),
  595. esc_attr( $stylesheet )
  596. );
  597. $this->single_row_columns( $theme );
  598. echo "</tr>";
  599. if ( $this->is_site_themes )
  600. remove_action( "after_theme_row_$stylesheet", 'wp_theme_update_row' );
  601. /**
  602. * Fires after each row in the Multisite themes list table.
  603. *
  604. * @since 3.1.0
  605. *
  606. * @param string $stylesheet Directory name of the theme.
  607. * @param WP_Theme $theme Current WP_Theme object.
  608. * @param string $status Status of the theme.
  609. */
  610. do_action( 'after_theme_row', $stylesheet, $theme, $status );
  611. /**
  612. * Fires after each specific row in the Multisite themes list table.
  613. *
  614. * The dynamic portion of the hook name, `$stylesheet`, refers to the
  615. * directory name of the theme, most often synonymous with the template
  616. * name of the theme.
  617. *
  618. * @since 3.5.0
  619. *
  620. * @param string $stylesheet Directory name of the theme.
  621. * @param WP_Theme $theme Current WP_Theme object.
  622. * @param string $status Status of the theme.
  623. */
  624. do_action( "after_theme_row_{$stylesheet}", $stylesheet, $theme, $status );
  625. }
  626. }