2003-05-22 12:12:53 +00:00
|
|
|
<?php
|
2008-08-14 06:30:38 +00:00
|
|
|
/**
|
|
|
|
|
* Link Management Administration Panel.
|
|
|
|
|
*
|
|
|
|
|
* @package WordPress
|
|
|
|
|
* @subpackage Administration
|
|
|
|
|
*/
|
2006-02-27 04:57:30 +00:00
|
|
|
|
2008-08-14 06:30:38 +00:00
|
|
|
/** Load WordPress Administration Bootstrap */
|
2008-02-14 05:28:48 +00:00
|
|
|
require_once ('admin.php');
|
2006-02-27 04:57:30 +00:00
|
|
|
|
2008-02-14 05:28:48 +00:00
|
|
|
// Handle bulk deletes
|
2008-09-29 09:26:21 +00:00
|
|
|
if ( isset($_GET['action']) && isset($_GET['linkcheck']) ) {
|
2008-02-14 05:28:48 +00:00
|
|
|
check_admin_referer('bulk-bookmarks');
|
2008-09-29 09:26:21 +00:00
|
|
|
$doaction = $_GET['action'] ? $_GET['action'] : $_GET['action2'];
|
2003-12-08 03:46:42 +00:00
|
|
|
|
2008-02-14 05:28:48 +00:00
|
|
|
if ( ! current_user_can('manage_links') )
|
2010-04-30 01:54:32 +00:00
|
|
|
wp_die( __('You do not have sufficient permissions to edit the links for this site.') );
|
2008-09-29 09:26:21 +00:00
|
|
|
|
|
|
|
|
if ( 'delete' == $doaction ) {
|
2009-12-03 01:43:49 +00:00
|
|
|
$bulklinks = (array) $_GET['linkcheck'];
|
|
|
|
|
foreach ( $bulklinks as $link_id ) {
|
2008-08-20 04:06:36 +00:00
|
|
|
$link_id = (int) $link_id;
|
|
|
|
|
|
|
|
|
|
wp_delete_link($link_id);
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-03 01:43:49 +00:00
|
|
|
wp_safe_redirect( wp_get_referer() );
|
2008-08-20 04:06:36 +00:00
|
|
|
exit;
|
2008-02-14 05:28:48 +00:00
|
|
|
}
|
2010-03-19 21:29:21 +00:00
|
|
|
} elseif ( ! empty($_GET['_wp_http_referer']) ) {
|
2008-09-29 09:26:21 +00:00
|
|
|
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
|
|
|
|
2006-07-03 19:03:37 +00:00
|
|
|
wp_reset_vars(array('action', 'cat_id', 'linkurl', 'name', 'image', 'description', 'visible', 'target', 'category', 'link_id', 'submit', 'order_by', 'links_show_cat_id', 'rating', 'rel', 'notes', 'linkcheck[]'));
|
2003-07-23 00:26:03 +00:00
|
|
|
|
2008-09-29 09:26:21 +00:00
|
|
|
if ( empty($cat_id) )
|
2006-02-27 04:57:30 +00:00
|
|
|
$cat_id = 'all';
|
|
|
|
|
|
2008-09-29 09:26:21 +00:00
|
|
|
if ( empty($order_by) )
|
2006-02-27 04:57:30 +00:00
|
|
|
$order_by = 'order_name';
|
|
|
|
|
|
2010-05-15 05:07:31 +00:00
|
|
|
$title = __('Links');
|
2008-11-29 18:09:09 +00:00
|
|
|
$this_file = $parent_file = 'link-manager.php';
|
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') )
|
2010-04-30 01:54:32 +00:00
|
|
|
wp_die(__("You do not have sufficient permissions to edit the links for this site."));
|
2006-02-27 04:57:30 +00:00
|
|
|
|
|
|
|
|
switch ($order_by) {
|
|
|
|
|
case 'order_id' :
|
|
|
|
|
$sqlorderby = 'id';
|
|
|
|
|
break;
|
|
|
|
|
case 'order_url' :
|
|
|
|
|
$sqlorderby = 'url';
|
|
|
|
|
break;
|
|
|
|
|
case 'order_desc' :
|
|
|
|
|
$sqlorderby = 'description';
|
|
|
|
|
break;
|
|
|
|
|
case 'order_owner' :
|
|
|
|
|
$sqlorderby = 'owner';
|
|
|
|
|
break;
|
|
|
|
|
case 'order_rating' :
|
|
|
|
|
$sqlorderby = 'rating';
|
|
|
|
|
break;
|
|
|
|
|
case 'order_name' :
|
|
|
|
|
default :
|
|
|
|
|
$sqlorderby = 'name';
|
|
|
|
|
break;
|
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(); ?>
|
2010-01-29 07:27:11 +00:00
|
|
|
<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
|
2010-01-29 08:11:20 +00:00
|
|
|
if ( !empty($_GET['s']) )
|
2009-05-18 15:11:07 +00:00
|
|
|
printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( stripslashes($_GET['s']) ) ); ?>
|
2008-12-04 12:01:02 +00:00
|
|
|
</h2>
|
2008-11-05 20:30:26 +00:00
|
|
|
|
2008-09-28 04:11:27 +00:00
|
|
|
<?php
|
2006-02-27 04:57:30 +00:00
|
|
|
if ( isset($_GET['deleted']) ) {
|
2009-12-26 09:00:58 +00:00
|
|
|
echo '<div id="message" class="updated"><p>';
|
2006-02-27 04:57:30 +00:00
|
|
|
$deleted = (int) $_GET['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>';
|
2008-02-26 20:35:40 +00:00
|
|
|
$_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
|
2006-02-27 04:57:30 +00:00
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
2008-10-27 01:22:24 +00:00
|
|
|
<form class="search-form" action="" method="get">
|
2008-10-24 18:25:46 +00:00
|
|
|
<p class="search-box">
|
2009-05-12 22:40:56 +00:00
|
|
|
<label class="screen-reader-text" for="link-search-input"><?php _e( 'Search Links' ); ?>:</label>
|
2009-04-16 04:41:05 +00:00
|
|
|
<input type="text" id="link-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
2009-05-05 19:43:53 +00:00
|
|
|
<input type="submit" value="<?php esc_attr_e( 'Search Links' ); ?>" class="button" />
|
2008-10-24 18:25:46 +00:00
|
|
|
</p>
|
|
|
|
|
</form>
|
|
|
|
|
<br class="clear" />
|
|
|
|
|
|
|
|
|
|
<form id="posts-filter" action="" method="get">
|
|
|
|
|
<div class="tablenav">
|
|
|
|
|
|
2010-02-13 08:49:27 +00:00
|
|
|
<?php
|
|
|
|
|
if ( 'all' == $cat_id )
|
|
|
|
|
$cat_id = '';
|
|
|
|
|
$args = array( 'category' => $cat_id, 'hide_invisible' => 0, 'orderby' => $sqlorderby, 'hide_empty' => 0 );
|
|
|
|
|
if ( ! empty( $_GET['s'] ) )
|
|
|
|
|
$args['search'] = $_GET['s'];
|
|
|
|
|
$links = get_bookmarks( $args );
|
|
|
|
|
if ( $links ) {
|
|
|
|
|
?>
|
|
|
|
|
|
2008-10-24 18:25:46 +00:00
|
|
|
<div class="alignleft actions">
|
|
|
|
|
<select name="action">
|
2008-12-04 21:57:56 +00:00
|
|
|
<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
|
2008-10-24 18:25:46 +00:00
|
|
|
<option value="delete"><?php _e('Delete'); ?></option>
|
|
|
|
|
</select>
|
2009-05-05 19:43:53 +00:00
|
|
|
<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />
|
2006-03-06 02:52:18 +00:00
|
|
|
|
2008-02-12 08:01:32 +00:00
|
|
|
<?php
|
2009-12-23 15:31:02 +00:00
|
|
|
$categories = get_terms('link_category', array("hide_empty" => 1));
|
2006-07-18 02:31:21 +00:00
|
|
|
$select_cat = "<select name=\"cat_id\">\n";
|
2008-02-12 08:01:32 +00:00
|
|
|
$select_cat .= '<option value="all"' . (($cat_id == 'all') ? " selected='selected'" : '') . '>' . __('View all Categories') . "</option>\n";
|
2006-07-18 02:31:21 +00:00
|
|
|
foreach ((array) $categories as $cat)
|
2009-05-05 19:43:53 +00:00
|
|
|
$select_cat .= '<option value="' . esc_attr($cat->term_id) . '"' . (($cat->term_id == $cat_id) ? " selected='selected'" : '') . '>' . sanitize_term_field('name', $cat->name, $cat->term_id, 'link_category', 'display') . "</option>\n";
|
2006-07-18 02:31:21 +00:00
|
|
|
$select_cat .= "</select>\n";
|
|
|
|
|
|
|
|
|
|
$select_order = "<select name=\"order_by\">\n";
|
2008-02-12 08:01:32 +00:00
|
|
|
$select_order .= '<option value="order_id"' . (($order_by == 'order_id') ? " selected='selected'" : '') . '>' . __('Order by Link ID') . "</option>\n";
|
|
|
|
|
$select_order .= '<option value="order_name"' . (($order_by == 'order_name') ? " selected='selected'" : '') . '>' . __('Order by Name') . "</option>\n";
|
|
|
|
|
$select_order .= '<option value="order_url"' . (($order_by == 'order_url') ? " selected='selected'" : '') . '>' . __('Order by Address') . "</option>\n";
|
|
|
|
|
$select_order .= '<option value="order_rating"' . (($order_by == 'order_rating') ? " selected='selected'" : '') . '>' . __('Order by Rating') . "</option>\n";
|
2006-07-18 02:31:21 +00:00
|
|
|
$select_order .= "</select>\n";
|
|
|
|
|
|
2008-02-12 08:01:32 +00:00
|
|
|
echo $select_cat;
|
|
|
|
|
echo $select_order;
|
|
|
|
|
|
2006-07-18 02:31:21 +00:00
|
|
|
?>
|
2009-05-05 19:43:53 +00:00
|
|
|
<input type="submit" id="post-query-submit" value="<?php esc_attr_e('Filter'); ?>" class="button-secondary" />
|
2008-10-02 18:03:45 +00:00
|
|
|
|
2008-02-12 08:01:32 +00:00
|
|
|
</div>
|
|
|
|
|
|
2008-03-14 23:58:31 +00:00
|
|
|
<br class="clear" />
|
2008-02-12 08:01:32 +00:00
|
|
|
</div>
|
|
|
|
|
|
2008-10-03 00:13:12 +00:00
|
|
|
<div class="clear"></div>
|
2008-02-12 08:01:32 +00:00
|
|
|
|
2006-12-03 21:32:17 +00:00
|
|
|
<?php
|
2008-11-17 19:16:26 +00:00
|
|
|
$link_columns = get_column_headers('link-manager');
|
2008-11-25 18:33:04 +00:00
|
|
|
$hidden = get_hidden_columns('link-manager');
|
2006-12-03 21:32:17 +00:00
|
|
|
?>
|
|
|
|
|
|
2006-05-02 22:36:06 +00:00
|
|
|
<?php wp_nonce_field('bulk-bookmarks') ?>
|
2008-11-17 18:01:00 +00:00
|
|
|
<table class="widefat fixed" cellspacing="0">
|
2006-03-29 01:51:55 +00:00
|
|
|
<thead>
|
2006-02-27 04:57:30 +00:00
|
|
|
<tr>
|
2008-11-17 19:16:26 +00:00
|
|
|
<?php print_column_headers('link-manager'); ?>
|
2006-02-27 04:57:30 +00:00
|
|
|
</tr>
|
2006-03-29 01:51:55 +00:00
|
|
|
</thead>
|
2008-09-29 09:26:21 +00:00
|
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
|
<tr>
|
2008-11-17 19:16:26 +00:00
|
|
|
<?php print_column_headers('link-manager', false); ?>
|
2008-09-29 09:26:21 +00:00
|
|
|
</tr>
|
|
|
|
|
</tfoot>
|
|
|
|
|
|
2008-02-27 00:46:27 +00:00
|
|
|
<tbody>
|
2003-05-22 12:12:53 +00:00
|
|
|
<?php
|
2008-08-27 22:04:12 +00:00
|
|
|
$alt = 0;
|
2008-08-08 17:05:10 +00:00
|
|
|
|
2006-02-27 04:57:30 +00:00
|
|
|
foreach ($links as $link) {
|
2007-08-20 22:50:04 +00:00
|
|
|
$link = sanitize_bookmark($link);
|
2009-05-05 19:43:53 +00:00
|
|
|
$link->link_name = esc_attr($link->link_name);
|
2006-02-27 04:57:30 +00:00
|
|
|
$link->link_category = wp_get_link_cats($link->link_id);
|
|
|
|
|
$short_url = str_replace('http://', '', $link->link_url);
|
2009-03-05 20:17:27 +00:00
|
|
|
$short_url = preg_replace('/^www\./i', '', $short_url);
|
2006-02-27 04:57:30 +00:00
|
|
|
if ('/' == substr($short_url, -1))
|
|
|
|
|
$short_url = substr($short_url, 0, -1);
|
|
|
|
|
if (strlen($short_url) > 35)
|
|
|
|
|
$short_url = substr($short_url, 0, 32).'...';
|
|
|
|
|
$visible = ($link->link_visible == 'Y') ? __('Yes') : __('No');
|
2009-05-05 04:59:19 +00:00
|
|
|
$rating = $link->link_rating;
|
2008-08-27 22:04:12 +00:00
|
|
|
$style = ($alt % 2) ? '' : ' class="alternate"';
|
|
|
|
|
++ $alt;
|
|
|
|
|
$edit_link = get_edit_bookmark_link();
|
2006-12-04 00:44:18 +00:00
|
|
|
?><tr id="link-<?php echo $link->link_id; ?>" valign="middle" <?php echo $style; ?>><?php
|
|
|
|
|
foreach($link_columns as $column_name=>$column_display_name) {
|
2008-09-14 06:51:42 +00:00
|
|
|
$class = "class=\"column-$column_name\"";
|
|
|
|
|
|
|
|
|
|
$style = '';
|
|
|
|
|
if ( in_array($column_name, $hidden) )
|
|
|
|
|
$style = ' style="display:none;"';
|
2009-05-05 04:59:19 +00:00
|
|
|
|
2008-09-14 06:51:42 +00:00
|
|
|
$attributes = "$class$style";
|
|
|
|
|
|
2006-12-04 00:44:18 +00:00
|
|
|
switch($column_name) {
|
2008-09-18 05:41:45 +00:00
|
|
|
case 'cb':
|
2009-05-05 19:43:53 +00:00
|
|
|
echo '<th scope="row" class="check-column"><input type="checkbox" name="linkcheck[]" value="'. esc_attr($link->link_id) .'" /></th>';
|
2008-09-18 05:41:45 +00:00
|
|
|
break;
|
2006-12-04 00:44:18 +00:00
|
|
|
case 'name':
|
2008-03-02 20:17:30 +00:00
|
|
|
|
2009-05-05 19:43:53 +00:00
|
|
|
echo "<td $attributes><strong><a class='row-title' href='$edit_link' title='" . esc_attr(sprintf(__('Edit “%s”'), $link->link_name)) . "'>$link->link_name</a></strong><br />";
|
2008-08-27 22:04:12 +00:00
|
|
|
$actions = array();
|
|
|
|
|
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
2009-05-09 07:27:22 +00:00
|
|
|
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("link.php?action=delete&link_id=$link->link_id", 'delete-bookmark_' . $link->link_id) . "' onclick=\"if ( confirm('" . esc_js(sprintf( __("You are about to delete this link '%s'\n 'Cancel' to stop, 'OK' to delete."), $link->link_name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
2008-08-27 22:04:12 +00:00
|
|
|
$action_count = count($actions);
|
|
|
|
|
$i = 0;
|
2008-12-02 19:00:48 +00:00
|
|
|
echo '<div class="row-actions">';
|
2008-08-29 08:58:30 +00:00
|
|
|
foreach ( $actions as $action => $linkaction ) {
|
2008-08-27 22:04:12 +00:00
|
|
|
++$i;
|
|
|
|
|
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
|
2008-08-29 08:58:30 +00:00
|
|
|
echo "<span class='$action'>$linkaction$sep</span>";
|
2008-08-27 22:04:12 +00:00
|
|
|
}
|
2008-12-02 19:00:48 +00:00
|
|
|
echo '</div>';
|
2008-08-27 22:04:12 +00:00
|
|
|
echo '</td>';
|
2006-12-04 00:44:18 +00:00
|
|
|
break;
|
|
|
|
|
case 'url':
|
2008-09-14 06:51:42 +00:00
|
|
|
echo "<td $attributes><a href='$link->link_url' title='".sprintf(__('Visit %s'), $link->link_name)."'>$short_url</a></td>";
|
2006-12-04 00:44:18 +00:00
|
|
|
break;
|
|
|
|
|
case 'categories':
|
2008-09-14 06:51:42 +00:00
|
|
|
?><td <?php echo $attributes ?>><?php
|
2006-12-04 00:44:18 +00:00
|
|
|
$cat_names = array();
|
|
|
|
|
foreach ($link->link_category as $category) {
|
2007-08-20 22:50:04 +00:00
|
|
|
$cat = get_term($category, 'link_category', OBJECT, 'display');
|
2007-09-18 16:32:22 +00:00
|
|
|
if ( is_wp_error( $cat ) )
|
|
|
|
|
echo $cat->get_error_message();
|
2007-08-20 22:50:04 +00:00
|
|
|
$cat_name = $cat->name;
|
2006-12-04 00:44:18 +00:00
|
|
|
if ( $cat_id != $category )
|
|
|
|
|
$cat_name = "<a href='link-manager.php?cat_id=$category'>$cat_name</a>";
|
|
|
|
|
$cat_names[] = $cat_name;
|
|
|
|
|
}
|
|
|
|
|
echo implode(', ', $cat_names);
|
2008-09-08 03:58:33 +00:00
|
|
|
?></td><?php
|
2006-12-04 00:44:18 +00:00
|
|
|
break;
|
|
|
|
|
case 'rel':
|
2009-03-26 02:17:01 +00:00
|
|
|
?><td <?php echo $attributes ?>><?php echo empty($link->link_rel) ? '<br />' : $link->link_rel; ?></td><?php
|
2006-12-04 00:44:18 +00:00
|
|
|
break;
|
|
|
|
|
case 'visible':
|
2008-09-14 06:51:42 +00:00
|
|
|
?><td <?php echo $attributes ?>><?php echo $visible; ?></td><?php
|
2006-12-04 00:44:18 +00:00
|
|
|
break;
|
2009-05-24 23:47:49 +00:00
|
|
|
case 'rating':
|
|
|
|
|
?><td <?php echo $attributes ?>><?php echo $rating; ?></td><?php
|
|
|
|
|
break;
|
2006-12-04 00:44:18 +00:00
|
|
|
default:
|
|
|
|
|
?>
|
2010-01-27 14:28:03 +00:00
|
|
|
<td <?php echo $attributes ?>><?php do_action('manage_link_custom_column', $column_name, $link->link_id); ?></td>
|
2006-12-04 00:44:18 +00:00
|
|
|
<?php
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
2006-02-27 04:57:30 +00:00
|
|
|
}
|
2005-08-31 02:39:17 +00:00
|
|
|
echo "\n </tr>\n";
|
2006-02-27 04:57:30 +00:00
|
|
|
}
|
2003-05-22 12:12:53 +00:00
|
|
|
?>
|
2006-03-29 01:51:55 +00:00
|
|
|
</tbody>
|
2003-07-26 23:52:36 +00:00
|
|
|
</table>
|
2008-02-22 17:30:43 +00:00
|
|
|
|
2008-09-29 09:26:21 +00:00
|
|
|
<div class="tablenav">
|
2003-12-08 03:46:42 +00:00
|
|
|
|
2008-10-24 18:25:46 +00:00
|
|
|
<div class="alignleft actions">
|
2008-09-29 09:26:21 +00:00
|
|
|
<select name="action2">
|
2008-12-04 21:57:56 +00:00
|
|
|
<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
|
2008-09-29 09:26:21 +00:00
|
|
|
<option value="delete"><?php _e('Delete'); ?></option>
|
|
|
|
|
</select>
|
2009-05-05 19:43:53 +00:00
|
|
|
<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
|
2008-09-29 09:26:21 +00:00
|
|
|
</div>
|
2005-08-31 02:39:17 +00:00
|
|
|
|
2010-02-13 08:49:27 +00:00
|
|
|
<?php } else { ?>
|
|
|
|
|
<p><?php _e( 'No links found.' ) ?></p>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
2008-03-14 23:58:31 +00:00
|
|
|
<br class="clear" />
|
2008-02-13 07:32:50 +00:00
|
|
|
</div>
|
|
|
|
|
|
2008-09-29 09:26:21 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div id="ajax-response"></div>
|
2006-12-03 21:32:17 +00:00
|
|
|
|
2006-07-04 21:44:08 +00:00
|
|
|
</div>
|
2003-05-22 12:12:53 +00:00
|
|
|
|
2009-01-12 13:43:17 +00:00
|
|
|
<?php
|
2010-04-18 06:14:45 +00:00
|
|
|
include('./admin-footer.php');
|