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
|
|
|
|
* AJAX processes for link actions.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
2006-02-27 05:57:30 +01:00
|
|
|
require_once ('admin.php');
|
|
|
|
|
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
|
|
|
|
2007-10-16 18:09:01 +02:00
|
|
|
if ( ! current_user_can('manage_links') )
|
2012-11-27 01:20:27 +01:00
|
|
|
wp_link_manager_disabled_message();
|
2007-10-16 18:09:01 +02:00
|
|
|
|
2008-11-04 04:22:24 +01:00
|
|
|
if ( !empty($_POST['deletebookmarks']) )
|
2006-02-27 05:57:30 +01:00
|
|
|
$action = 'deletebookmarks';
|
2008-11-04 04:22:24 +01:00
|
|
|
if ( !empty($_POST['move']) )
|
2006-02-27 05:57:30 +01:00
|
|
|
$action = 'move';
|
2008-11-04 04:22:24 +01:00
|
|
|
if ( !empty($_POST['linkcheck']) )
|
|
|
|
$linkcheck = $_POST['linkcheck'];
|
2006-02-27 05:57:30 +01:00
|
|
|
|
2010-10-27 12:43:43 +02:00
|
|
|
$this_file = admin_url('link-manager.php');
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
switch ($action) {
|
2007-10-16 18:09:01 +02:00
|
|
|
case 'deletebookmarks' :
|
2006-05-03 00:36:06 +02:00
|
|
|
check_admin_referer('bulk-bookmarks');
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
//for each link id (in $linkcheck[]) change category to selected value
|
|
|
|
if (count($linkcheck) == 0) {
|
2006-06-27 07:38:56 +02:00
|
|
|
wp_redirect($this_file);
|
2006-02-27 05:57:30 +01:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$deleted = 0;
|
|
|
|
foreach ($linkcheck as $link_id) {
|
|
|
|
$link_id = (int) $link_id;
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2006-02-27 05:57:30 +01:00
|
|
|
if ( wp_delete_link($link_id) )
|
|
|
|
$deleted++;
|
|
|
|
}
|
|
|
|
|
2006-06-27 07:38:56 +02:00
|
|
|
wp_redirect("$this_file?deleted=$deleted");
|
2006-11-15 01:02:28 +01:00
|
|
|
exit;
|
2006-02-27 05:57:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'move' :
|
2006-05-03 00:36:06 +02:00
|
|
|
check_admin_referer('bulk-bookmarks');
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
//for each link id (in $linkcheck[]) change category to selected value
|
|
|
|
if (count($linkcheck) == 0) {
|
2006-06-27 07:38:56 +02:00
|
|
|
wp_redirect($this_file);
|
2006-02-27 05:57:30 +01:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$all_links = join(',', $linkcheck);
|
|
|
|
// 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-06-27 07:38:56 +02:00
|
|
|
wp_redirect($this_file);
|
2006-11-15 01:02:28 +01:00
|
|
|
exit;
|
2006-02-27 05:57:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'add' :
|
2006-05-03 00:36:06 +02:00
|
|
|
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();
|
|
|
|
if ( add_link() )
|
|
|
|
$redir = add_query_arg( 'added', 'true', $redir );
|
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
|
|
|
break;
|
|
|
|
|
|
|
|
case 'save' :
|
|
|
|
$link_id = (int) $_POST['link_id'];
|
2006-05-27 01:08:05 +02:00
|
|
|
check_admin_referer('update-bookmark_' . $link_id);
|
2006-05-03 00:36:06 +02:00
|
|
|
|
2006-02-27 05:57:30 +01:00
|
|
|
edit_link($link_id);
|
|
|
|
|
|
|
|
wp_redirect($this_file);
|
|
|
|
exit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete' :
|
2006-05-03 00:36:06 +02:00
|
|
|
$link_id = (int) $_GET['link_id'];
|
2006-05-27 01:08:05 +02:00
|
|
|
check_admin_referer('delete-bookmark_' . $link_id);
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
wp_delete_link($link_id);
|
|
|
|
|
|
|
|
wp_redirect($this_file);
|
2006-11-15 01:02:28 +01:00
|
|
|
exit;
|
2006-02-27 05:57:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'edit' :
|
2008-01-31 21:04:54 +01:00
|
|
|
wp_enqueue_script('link');
|
2008-03-10 06:44:56 +01:00
|
|
|
wp_enqueue_script('xfn');
|
2008-01-31 21:04:54 +01:00
|
|
|
|
2012-04-11 04:20:51 +02:00
|
|
|
if ( wp_is_mobile() )
|
|
|
|
wp_enqueue_script( 'jquery-touch-punch' );
|
|
|
|
|
2008-11-29 18:51:30 +01:00
|
|
|
$parent_file = 'link-manager.php';
|
2006-02-27 05:57:30 +01:00
|
|
|
$submenu_file = 'link-manager.php';
|
2006-11-20 03:17:07 +01:00
|
|
|
$title = __('Edit Link');
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
$link_id = (int) $_GET['link_id'];
|
|
|
|
|
|
|
|
if (!$link = get_link_to_edit($link_id))
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die(__('Link not found.'));
|
2006-02-27 05:57:30 +01:00
|
|
|
|
|
|
|
include ('edit-link-form.php');
|
2007-10-16 18:09:01 +02:00
|
|
|
include ('admin-footer.php');
|
2006-02-27 05:57:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default :
|
|
|
|
break;
|
|
|
|
}
|