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