Files
WordPress/wp-admin/link-manager.php
T

90 lines
3.1 KiB
PHP
Raw Normal View History

2003-05-22 12:12:53 +00:00
<?php
/**
* Link Management Administration Panel.
*
* @package WordPress
* @subpackage Administration
*/
2006-02-27 04:57:30 +00:00
/** Load WordPress Administration Bootstrap */
2008-02-14 05:28:48 +00:00
require_once ('admin.php');
if ( ! current_user_can( 'manage_links' ) )
wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
2006-02-27 04:57:30 +00:00
$wp_list_table = get_list_table('WP_Links_List_Table');
2008-02-14 05:28:48 +00:00
// Handle bulk deletes
$doaction = $wp_list_table->current_action();
2003-12-08 03:46:42 +00:00
if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) {
check_admin_referer( 'bulk-bookmarks' );
if ( 'delete' == $doaction ) {
$bulklinks = (array) $_REQUEST['linkcheck'];
foreach ( $bulklinks as $link_id ) {
$link_id = (int) $link_id;
wp_delete_link( $link_id );
}
wp_redirect( add_query_arg('deleted', count( $bulklinks ), admin_url( 'link-manager.php' ) ) );
exit;
2008-02-14 05:28:48 +00:00
}
} elseif ( ! empty( $_REQUEST['_wp_http_referer'] ) ) {
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) );
2008-03-02 20:17:30 +00:00
exit;
2008-02-14 05:28:48 +00:00
}
2003-05-22 12:12:53 +00:00
$wp_list_table->prepare_items();
2006-02-27 04:57:30 +00:00
$title = __('Links');
2008-11-29 18:09:09 +00:00
$this_file = $parent_file = 'link-manager.php';
2010-05-27 11:52:15 +00:00
add_contextual_help( $current_screen,
'<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>' .
2010-05-27 11:52:15 +00:00
'<p>' . __('Links may be separated into categories; these are different than the categories used on your posts.') . '</p>' .
'<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>' .
'<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>' .
2010-05-27 11:52:15 +00:00
'<p><strong>' . __('For more information:') . '</strong></p>' .
'<p>' . __('<a href="http://codex.wordpress.org/Links_Links_SubPanel" target="_blank">Documentation on Managing Links</a>') . '</p>' .
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
2010-05-26 21:32:30 +00:00
);
2010-01-29 08:11:20 +00:00
include_once ('./admin-header.php');
2006-02-27 04:57:30 +00:00
2010-01-29 08:11:20 +00:00
if ( ! current_user_can('manage_links') )
wp_die(__("You do not have sufficient permissions to edit the links for this site."));
2006-02-27 04:57:30 +00:00
?>
2008-09-28 04:11:27 +00:00
2008-11-05 20:30:26 +00:00
<div class="wrap nosubsub">
2008-11-26 13:51:25 +00:00
<?php screen_icon(); ?>
<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
if ( !empty($_REQUEST['s']) )
printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( stripslashes($_REQUEST['s']) ) ); ?>
</h2>
2008-11-05 20:30:26 +00:00
2008-09-28 04:11:27 +00:00
<?php
if ( isset($_REQUEST['deleted']) ) {
echo '<div id="message" class="updated"><p>';
$deleted = (int) $_REQUEST['deleted'];
2009-02-20 19:35:16 +00:00
printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
2006-02-27 04:57:30 +00:00
echo '</p></div>';
$_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
2006-02-27 04:57:30 +00:00
}
?>
<form id="posts-filter" action="" method="post">
<?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
<?php $wp_list_table->display(); ?>
<div id="ajax-response"></div>
</form>
2006-07-04 21:44:08 +00:00
</div>
2003-05-22 12:12:53 +00:00
<?php
include('./admin-footer.php');