author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 15:48:13 +0200 | |
changeset 13 | d255fe9cd479 |
parent 9 | 177826044cd9 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Link Management Administration Screen. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** Load WordPress Administration Bootstrap */ |
|
10 |
require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
9 | 11 |
if ( ! current_user_can( 'manage_links' ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) ); |
9 | 13 |
} |
0 | 14 |
|
9 | 15 |
$wp_list_table = _get_list_table( 'WP_Links_List_Table' ); |
0 | 16 |
|
17 |
// Handle bulk deletes |
|
18 |
$doaction = $wp_list_table->current_action(); |
|
19 |
||
20 |
if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) { |
|
21 |
check_admin_referer( 'bulk-bookmarks' ); |
|
22 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
$redirect_to = admin_url( 'link-manager.php' ); |
9 | 24 |
$bulklinks = (array) $_REQUEST['linkcheck']; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
|
0 | 26 |
if ( 'delete' == $doaction ) { |
27 |
foreach ( $bulklinks as $link_id ) { |
|
28 |
$link_id = (int) $link_id; |
|
29 |
||
30 |
wp_delete_link( $link_id ); |
|
31 |
} |
|
32 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
33 |
$redirect_to = add_query_arg( 'deleted', count( $bulklinks ), $redirect_to ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
34 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
/** This action is documented in wp-admin/edit-comments.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
36 |
$redirect_to = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $bulklinks ); |
0 | 37 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
38 |
wp_redirect( $redirect_to ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
exit; |
0 | 40 |
} elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { |
9 | 41 |
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); |
42 |
exit; |
|
0 | 43 |
} |
44 |
||
45 |
$wp_list_table->prepare_items(); |
|
46 |
||
9 | 47 |
$title = __( 'Links' ); |
0 | 48 |
$this_file = $parent_file = 'link-manager.php'; |
49 |
||
9 | 50 |
get_current_screen()->add_help_tab( |
51 |
array( |
|
52 |
'id' => 'overview', |
|
53 |
'title' => __( 'Overview' ), |
|
54 |
'content' => |
|
55 |
'<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>' . |
|
56 |
'<p>' . __( 'Links may be separated into Link Categories; these are different than the categories used on your posts.' ) . '</p>' . |
|
57 |
'<p>' . __( 'You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.' ) . '</p>', |
|
58 |
) |
|
59 |
); |
|
60 |
get_current_screen()->add_help_tab( |
|
61 |
array( |
|
62 |
'id' => 'deleting-links', |
|
63 |
'title' => __( 'Deleting Links' ), |
|
64 |
'content' => |
|
65 |
'<p>' . __( 'If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.' ) . '</p>', |
|
66 |
) |
|
67 |
); |
|
0 | 68 |
|
69 |
get_current_screen()->set_help_sidebar( |
|
9 | 70 |
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' . |
71 |
'<p>' . __( '<a href="https://codex.wordpress.org/Links_Screen">Documentation on Managing Links</a>' ) . '</p>' . |
|
72 |
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' |
|
0 | 73 |
); |
74 |
||
9 | 75 |
get_current_screen()->set_screen_reader_content( |
76 |
array( |
|
77 |
'heading_list' => __( 'Links list' ), |
|
78 |
) |
|
79 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
|
0 | 81 |
include_once( ABSPATH . 'wp-admin/admin-header.php' ); |
82 |
||
9 | 83 |
if ( ! current_user_can( 'manage_links' ) ) { |
84 |
wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) ); |
|
85 |
} |
|
0 | 86 |
|
87 |
?> |
|
88 |
||
89 |
<div class="wrap nosubsub"> |
|
9 | 90 |
<h1 class="wp-heading-inline"> |
91 |
<?php |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
echo esc_html( $title ); |
9 | 93 |
?> |
94 |
</h1> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
95 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
96 |
<a href="link-add.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'link' ); ?></a> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
/* translators: %s: search keywords */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
101 |
printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
102 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
104 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
<hr class="wp-header-end"> |
0 | 106 |
|
107 |
<?php |
|
9 | 108 |
if ( isset( $_REQUEST['deleted'] ) ) { |
5 | 109 |
echo '<div id="message" class="updated notice is-dismissible"><p>'; |
0 | 110 |
$deleted = (int) $_REQUEST['deleted']; |
9 | 111 |
printf( _n( '%s link deleted.', '%s links deleted', $deleted ), $deleted ); |
0 | 112 |
echo '</p></div>'; |
9 | 113 |
$_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] ); |
0 | 114 |
} |
115 |
?> |
|
116 |
||
5 | 117 |
<form id="posts-filter" method="get"> |
0 | 118 |
|
119 |
<?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?> |
|
120 |
||
121 |
<?php $wp_list_table->display(); ?> |
|
122 |
||
123 |
<div id="ajax-response"></div> |
|
124 |
</form> |
|
125 |
||
126 |
</div> |
|
127 |
||
128 |
<?php |
|
129 |
include( ABSPATH . 'wp-admin/admin-footer.php' ); |