2006-02-26 23:57:30 -05:00
|
|
|
<?php
|
2008-08-14 02:30:38 -04:00
|
|
|
/**
|
|
|
|
* Manage link administration actions.
|
|
|
|
*
|
|
|
|
* This page is accessed by the link management pages and handles the forms and
|
2016-07-09 20:51:30 -04:00
|
|
|
* Ajax processes for link actions.
|
2008-08-14 02:30:38 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
2020-02-06 01:33:11 -05:00
|
|
|
require_once __DIR__ . '/admin.php';
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2013-02-16 13:28:41 -05:00
|
|
|
wp_reset_vars( array( 'action', 'cat_id', 'link_id' ) );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! current_user_can( 'manage_links' ) ) {
|
2012-11-26 19:20:27 -05:00
|
|
|
wp_link_manager_disabled_message();
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2007-10-16 12:09:01 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( ! empty( $_POST['deletebookmarks'] ) ) {
|
2006-02-26 23:57:30 -05:00
|
|
|
$action = 'deletebookmarks';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
|
|
|
if ( ! empty( $_POST['move'] ) ) {
|
2006-02-26 23:57:30 -05:00
|
|
|
$action = 'move';
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
|
|
|
if ( ! empty( $_POST['linkcheck'] ) ) {
|
2008-11-03 22:22:24 -05:00
|
|
|
$linkcheck = $_POST['linkcheck'];
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
$this_file = admin_url( 'link-manager.php' );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
switch ( $action ) {
|
|
|
|
case 'deletebookmarks':
|
|
|
|
check_admin_referer( 'bulk-bookmarks' );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2014-07-17 05:14:16 -04:00
|
|
|
// For each link id (in $linkcheck[]) change category to selected value.
|
2020-05-12 14:32:08 -04:00
|
|
|
if ( count( $linkcheck ) === 0 ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( $this_file );
|
2006-02-26 23:57:30 -05:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$deleted = 0;
|
2017-11-30 18:11:00 -05:00
|
|
|
foreach ( $linkcheck as $link_id ) {
|
2006-02-26 23:57:30 -05:00
|
|
|
$link_id = (int) $link_id;
|
2006-11-19 02:56:05 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( wp_delete_link( $link_id ) ) {
|
2006-02-26 23:57:30 -05:00
|
|
|
$deleted++;
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2006-02-26 23:57:30 -05:00
|
|
|
}
|
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( "$this_file?deleted=$deleted" );
|
2006-11-14 19:02:28 -05:00
|
|
|
exit;
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
case 'move':
|
|
|
|
check_admin_referer( 'bulk-bookmarks' );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2014-07-17 05:14:16 -04:00
|
|
|
// For each link id (in $linkcheck[]) change category to selected value.
|
2020-05-12 14:32:08 -04:00
|
|
|
if ( count( $linkcheck ) === 0 ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( $this_file );
|
2006-02-26 23:57:30 -05:00
|
|
|
exit;
|
|
|
|
}
|
2020-10-18 13:27:06 -04:00
|
|
|
$all_links = implode( ',', $linkcheck );
|
2014-07-17 05:14:16 -04:00
|
|
|
/*
|
|
|
|
* Should now have an array of links we can change:
|
|
|
|
* $q = $wpdb->query("update $wpdb->links SET link_category='$category' WHERE link_id IN ($all_links)");
|
|
|
|
*/
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( $this_file );
|
2006-11-14 19:02:28 -05:00
|
|
|
exit;
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
case 'add':
|
|
|
|
check_admin_referer( 'add-bookmark' );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2010-04-03 03:48:30 -04:00
|
|
|
$redir = wp_get_referer();
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( add_link() ) {
|
2010-04-03 03:48:30 -04:00
|
|
|
$redir = add_query_arg( 'added', 'true', $redir );
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2010-04-03 03:48:30 -04:00
|
|
|
wp_redirect( $redir );
|
2006-11-14 19:02:28 -05:00
|
|
|
exit;
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
case 'save':
|
2006-02-26 23:57:30 -05:00
|
|
|
$link_id = (int) $_POST['link_id'];
|
2017-11-30 18:11:00 -05:00
|
|
|
check_admin_referer( 'update-bookmark_' . $link_id );
|
2006-05-02 18:36:06 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
edit_link( $link_id );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( $this_file );
|
2006-02-26 23:57:30 -05:00
|
|
|
exit;
|
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
case 'delete':
|
2006-05-02 18:36:06 -04:00
|
|
|
$link_id = (int) $_GET['link_id'];
|
2017-11-30 18:11:00 -05:00
|
|
|
check_admin_referer( 'delete-bookmark_' . $link_id );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_delete_link( $link_id );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_redirect( $this_file );
|
2006-11-14 19:02:28 -05:00
|
|
|
exit;
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
case 'edit':
|
|
|
|
wp_enqueue_script( 'link' );
|
|
|
|
wp_enqueue_script( 'xfn' );
|
2008-01-31 15:04:54 -05:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
if ( wp_is_mobile() ) {
|
2012-04-10 22:20:51 -04:00
|
|
|
wp_enqueue_script( 'jquery-touch-punch' );
|
2017-11-30 18:11:00 -05:00
|
|
|
}
|
2012-04-10 22:20:51 -04:00
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
$parent_file = 'link-manager.php';
|
2006-02-26 23:57:30 -05:00
|
|
|
$submenu_file = 'link-manager.php';
|
2021-07-22 09:53:00 -04:00
|
|
|
// Used in the HTML title tag.
|
2017-11-30 18:11:00 -05:00
|
|
|
$title = __( 'Edit Link' );
|
2006-02-26 23:57:30 -05:00
|
|
|
|
|
|
|
$link_id = (int) $_GET['link_id'];
|
|
|
|
|
2019-07-01 08:52:01 -04:00
|
|
|
$link = get_link_to_edit( $link_id );
|
|
|
|
if ( ! $link ) {
|
2017-11-30 18:11:00 -05:00
|
|
|
wp_die( __( 'Link not found.' ) );
|
|
|
|
}
|
2006-02-26 23:57:30 -05:00
|
|
|
|
2020-02-06 01:33:11 -05:00
|
|
|
require ABSPATH . 'wp-admin/edit-link-form.php';
|
|
|
|
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
2006-02-26 23:57:30 -05:00
|
|
|
break;
|
|
|
|
|
2017-11-30 18:11:00 -05:00
|
|
|
default:
|
2006-02-26 23:57:30 -05:00
|
|
|
break;
|
|
|
|
}
|