Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

113 рядки
3.8 KiB

  1. <?php
  2. /**
  3. * Link Management Administration Screen.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** Load WordPress Administration Bootstrap */
  9. require_once( dirname( __FILE__ ) . '/admin.php' );
  10. if ( ! current_user_can( 'manage_links' ) )
  11. wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) );
  12. $wp_list_table = _get_list_table('WP_Links_List_Table');
  13. // Handle bulk deletes
  14. $doaction = $wp_list_table->current_action();
  15. if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) {
  16. check_admin_referer( 'bulk-bookmarks' );
  17. $redirect_to = admin_url( 'link-manager.php' );
  18. $bulklinks = (array) $_REQUEST['linkcheck'];
  19. if ( 'delete' == $doaction ) {
  20. foreach ( $bulklinks as $link_id ) {
  21. $link_id = (int) $link_id;
  22. wp_delete_link( $link_id );
  23. }
  24. $redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to );
  25. } else {
  26. /** This action is documented in wp-admin/edit-comments.php */
  27. $redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $bulklinks );
  28. }
  29. wp_redirect( $redirect_to );
  30. exit;
  31. } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
  32. wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
  33. exit;
  34. }
  35. $wp_list_table->prepare_items();
  36. $title = __('Links');
  37. $this_file = $parent_file = 'link-manager.php';
  38. get_current_screen()->add_help_tab( array(
  39. 'id' => 'overview',
  40. 'title' => __('Overview'),
  41. 'content' =>
  42. '<p>' . sprintf(__('You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.'), 'widgets.php') . '</p>' .
  43. '<p>' . __('Links may be separated into Link Categories; these are different than the categories used on your posts.') . '</p>' .
  44. '<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>'
  45. ) );
  46. get_current_screen()->add_help_tab( array(
  47. 'id' => 'deleting-links',
  48. 'title' => __('Deleting Links'),
  49. 'content' =>
  50. '<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>'
  51. ) );
  52. get_current_screen()->set_help_sidebar(
  53. '<p><strong>' . __('For more information:') . '</strong></p>' .
  54. '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen">Documentation on Managing Links</a>') . '</p>' .
  55. '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
  56. );
  57. get_current_screen()->set_screen_reader_content( array(
  58. 'heading_list' => __( 'Links list' ),
  59. ) );
  60. include_once( ABSPATH . 'wp-admin/admin-header.php' );
  61. if ( ! current_user_can('manage_links') )
  62. wp_die(__('Sorry, you are not allowed to edit the links for this site.'));
  63. ?>
  64. <div class="wrap nosubsub">
  65. <h1><?php echo esc_html( $title ); ?> <a href="link-add.php" class="page-title-action"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
  66. if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
  67. /* translators: %s: search keywords */
  68. printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
  69. }
  70. ?>
  71. </h1>
  72. <?php
  73. if ( isset($_REQUEST['deleted']) ) {
  74. echo '<div id="message" class="updated notice is-dismissible"><p>';
  75. $deleted = (int) $_REQUEST['deleted'];
  76. printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
  77. echo '</p></div>';
  78. $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
  79. }
  80. ?>
  81. <form id="posts-filter" method="get">
  82. <?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
  83. <?php $wp_list_table->display(); ?>
  84. <div id="ajax-response"></div>
  85. </form>
  86. </div>
  87. <?php
  88. include( ABSPATH . 'wp-admin/admin-footer.php' );