2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
|
|
|
* Link Management Administration Panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
2006-02-27 05:57:30 +01:00
|
|
|
|
2008-08-14 08:30:38 +02:00
|
|
|
/** Load WordPress Administration Bootstrap */
|
2008-02-14 06:28:48 +01:00
|
|
|
require_once ('admin.php');
|
2006-02-27 05:57:30 +01:00
|
|
|
|
2008-02-14 06:28:48 +01:00
|
|
|
// Handle bulk deletes
|
|
|
|
if ( isset($_GET['deleteit']) && isset($_GET['linkcheck']) ) {
|
|
|
|
check_admin_referer('bulk-bookmarks');
|
2003-12-08 04:46:42 +01:00
|
|
|
|
2008-02-14 06:28:48 +01:00
|
|
|
if ( ! current_user_can('manage_links') )
|
|
|
|
wp_die( __('You do not have sufficient permissions to edit the links for this blog.') );
|
|
|
|
|
|
|
|
foreach ( (array) $_GET['linkcheck'] as $link_id) {
|
|
|
|
$link_id = (int) $link_id;
|
|
|
|
|
|
|
|
wp_delete_link($link_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
$sendback = wp_get_referer();
|
|
|
|
$sendback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $sendback);
|
|
|
|
wp_redirect($sendback);
|
|
|
|
exit;
|
2008-02-15 23:29:18 +01:00
|
|
|
} elseif ( !empty($_GET['_wp_http_referer']) ) {
|
|
|
|
wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI'])));
|
2008-03-02 21:17:30 +01:00
|
|
|
exit;
|
2008-02-14 06:28:48 +01:00
|
|
|
}
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2008-01-07 21:38:49 +01:00
|
|
|
wp_enqueue_script('admin-forms');
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2006-07-03 21:03:37 +02: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 02:26:03 +02:00
|
|
|
|
2006-02-27 05:57:30 +01:00
|
|
|
if (empty ($cat_id))
|
|
|
|
$cat_id = 'all';
|
|
|
|
|
|
|
|
if (empty ($order_by))
|
|
|
|
$order_by = 'order_name';
|
|
|
|
|
2008-01-04 21:18:55 +01:00
|
|
|
$title = __('Manage Links');
|
|
|
|
$this_file = $parent_file = 'edit.php';
|
2006-02-27 05:57:30 +01:00
|
|
|
include_once ("./admin-header.php");
|
|
|
|
|
|
|
|
if (!current_user_can('manage_links'))
|
2006-11-20 03:17:07 +01:00
|
|
|
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
|
2006-02-27 05:57:30 +01: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-03-18 20:41:09 +01:00
|
|
|
|
2006-02-27 05:57:30 +01:00
|
|
|
if ( isset($_GET['deleted']) ) {
|
|
|
|
echo '<div style="background-color: rgb(207, 235, 247);" id="message" class="updated fade"><p>';
|
|
|
|
$deleted = (int) $_GET['deleted'];
|
2006-12-22 00:06:18 +01:00
|
|
|
printf(__ngettext('%s link deleted.', '%s links deleted', $deleted), $deleted);
|
2006-02-27 05:57:30 +01:00
|
|
|
echo '</p></div>';
|
2008-02-26 21:35:40 +01:00
|
|
|
$_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
|
2006-02-27 05:57:30 +01:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2003-05-23 10:29:51 +02:00
|
|
|
<div class="wrap">
|
2006-03-06 03:52:18 +01:00
|
|
|
|
2008-02-12 09:01:32 +01:00
|
|
|
<form id="posts-filter" action="" method="get">
|
2008-03-20 06:02:40 +01:00
|
|
|
<h2><?php printf( __( 'Manage Links (<a href="%s">add new</a>)' ), 'link-add.php' ); ?></h2>
|
2008-02-12 09:01:32 +01:00
|
|
|
|
|
|
|
<p id="post-search">
|
2008-05-04 12:37:06 +02:00
|
|
|
<label class="hidden" for="post-search-input"><?php _e( 'Search Links' ); ?>:</label>
|
2008-08-08 19:05:10 +02:00
|
|
|
<input type="text" id="post-search-input" name="s" value="<?php echo ( isset( $_GET['s'] ) ? attribute_escape(stripslashes($_GET['s'])) : ''); ?>" />
|
2008-02-19 21:33:59 +01:00
|
|
|
<input type="submit" value="<?php _e( 'Search Links' ); ?>" class="button" />
|
2008-02-12 09:01:32 +01:00
|
|
|
</p>
|
|
|
|
|
2008-03-15 00:58:31 +01:00
|
|
|
<br class="clear" />
|
2008-02-12 09:01:32 +01:00
|
|
|
|
|
|
|
<div class="tablenav">
|
|
|
|
|
2008-03-15 00:58:31 +01:00
|
|
|
<div class="alignleft">
|
2008-03-07 19:35:24 +01:00
|
|
|
<input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" />
|
2008-02-12 09:01:32 +01:00
|
|
|
<?php
|
2007-06-03 19:28:27 +02:00
|
|
|
$categories = get_terms('link_category', "hide_empty=1");
|
2006-07-18 04:31:21 +02:00
|
|
|
$select_cat = "<select name=\"cat_id\">\n";
|
2008-02-12 09:01:32 +01:00
|
|
|
$select_cat .= '<option value="all"' . (($cat_id == 'all') ? " selected='selected'" : '') . '>' . __('View all Categories') . "</option>\n";
|
2006-07-18 04:31:21 +02:00
|
|
|
foreach ((array) $categories as $cat)
|
2007-08-21 00:50:04 +02:00
|
|
|
$select_cat .= '<option value="' . $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 04:31:21 +02:00
|
|
|
$select_cat .= "</select>\n";
|
|
|
|
|
|
|
|
$select_order = "<select name=\"order_by\">\n";
|
2008-02-12 09:01:32 +01: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 04:31:21 +02:00
|
|
|
$select_order .= "</select>\n";
|
|
|
|
|
2008-02-12 09:01:32 +01:00
|
|
|
echo $select_cat;
|
|
|
|
echo $select_order;
|
|
|
|
|
2006-07-18 04:31:21 +02:00
|
|
|
?>
|
2008-02-21 01:27:23 +01:00
|
|
|
<input type="submit" id="post-query-submit" value="<?php _e('Filter'); ?>" class="button-secondary" />
|
2008-02-12 09:01:32 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2008-03-15 00:58:31 +01:00
|
|
|
<br class="clear" />
|
2008-02-12 09:01:32 +01:00
|
|
|
</div>
|
|
|
|
|
2008-03-15 00:58:31 +01:00
|
|
|
<br class="clear" />
|
2008-02-12 09:01:32 +01:00
|
|
|
|
2006-12-04 01:44:18 +01:00
|
|
|
<?php
|
|
|
|
$link_columns = array(
|
2008-02-29 18:09:44 +01:00
|
|
|
'name' => '<th style="width: 15%;">' . __('Name') . '</th>',
|
2006-12-04 01:44:18 +01:00
|
|
|
'url' => '<th>' . __('URL') . '</th>',
|
|
|
|
'categories' => '<th>' . __('Categories') . '</th>',
|
|
|
|
'rel' => '<th style="text-align: center">' . __('rel') . '</th>',
|
|
|
|
'visible' => '<th style="text-align: center">' . __('Visible') . '</th>',
|
|
|
|
);
|
|
|
|
$link_columns = apply_filters('manage_link_columns', $link_columns);
|
|
|
|
?>
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2006-12-03 22:32:17 +01:00
|
|
|
<?php
|
|
|
|
if ( 'all' == $cat_id )
|
|
|
|
$cat_id = '';
|
2008-02-12 09:01:32 +01:00
|
|
|
$args = array('category' => $cat_id, 'hide_invisible' => 0, 'orderby' => $sqlorderby, 'hide_empty' => 0);
|
2008-02-12 10:02:02 +01:00
|
|
|
if ( !empty($_GET['s']) )
|
2008-02-12 09:01:32 +01:00
|
|
|
$args['search'] = $_GET['s'];
|
|
|
|
$links = get_bookmarks( $args );
|
2006-12-03 22:32:17 +01:00
|
|
|
if ( $links ) {
|
|
|
|
?>
|
|
|
|
|
2006-05-03 00:36:06 +02:00
|
|
|
<?php wp_nonce_field('bulk-bookmarks') ?>
|
2006-05-10 22:35:10 +02:00
|
|
|
<table class="widefat">
|
2006-03-29 03:51:55 +02:00
|
|
|
<thead>
|
2006-02-27 05:57:30 +01:00
|
|
|
<tr>
|
2008-04-19 00:23:02 +02:00
|
|
|
<th scope="col" class="check-column"><input type="checkbox" /></th>
|
2006-12-04 01:44:18 +01:00
|
|
|
<?php foreach($link_columns as $column_display_name) {
|
|
|
|
echo $column_display_name;
|
|
|
|
} ?>
|
2006-02-27 05:57:30 +01:00
|
|
|
</tr>
|
2006-03-29 03:51:55 +02:00
|
|
|
</thead>
|
2008-02-27 01:46:27 +01:00
|
|
|
<tbody>
|
2003-05-22 14:12:53 +02:00
|
|
|
<?php
|
2008-08-08 19:05:10 +02:00
|
|
|
$i = 0; // It is slower incrementing an undefined and valueless variable.
|
|
|
|
|
2006-02-27 05:57:30 +01:00
|
|
|
foreach ($links as $link) {
|
2007-08-21 00:50:04 +02:00
|
|
|
$link = sanitize_bookmark($link);
|
|
|
|
$link->link_name = attribute_escape($link->link_name);
|
2006-02-27 05:57:30 +01:00
|
|
|
$link->link_category = wp_get_link_cats($link->link_id);
|
|
|
|
$short_url = str_replace('http://', '', $link->link_url);
|
|
|
|
$short_url = str_replace('www.', '', $short_url);
|
|
|
|
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');
|
|
|
|
++ $i;
|
|
|
|
$style = ($i % 2) ? '' : ' class="alternate"';
|
2006-12-04 01:44:18 +01:00
|
|
|
?><tr id="link-<?php echo $link->link_id; ?>" valign="middle" <?php echo $style; ?>><?php
|
2008-02-20 10:29:27 +01:00
|
|
|
echo '<th scope="row" class="check-column"><input type="checkbox" name="linkcheck[]" value="'.$link->link_id.'" /></th>';
|
2006-12-04 01:44:18 +01:00
|
|
|
foreach($link_columns as $column_name=>$column_display_name) {
|
|
|
|
switch($column_name) {
|
|
|
|
case 'name':
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2008-03-18 00:40:55 +01:00
|
|
|
echo "<td><strong><a class='row-title' href='link.php?link_id=$link->link_id&action=edit' title='" . attribute_escape(sprintf(__('Edit "%s"'), $link->link_name)) . "' class='edit'>$link->link_name</a></strong><br />";
|
2006-12-04 01:44:18 +01:00
|
|
|
echo $link->link_description . "</td>";
|
|
|
|
break;
|
|
|
|
case 'url':
|
|
|
|
echo "<td><a href='$link->link_url' title='".sprintf(__('Visit %s'), $link->link_name)."'>$short_url</a></td>";
|
|
|
|
break;
|
|
|
|
case 'categories':
|
|
|
|
?><td><?php
|
|
|
|
$cat_names = array();
|
|
|
|
foreach ($link->link_category as $category) {
|
2007-08-21 00:50:04 +02:00
|
|
|
$cat = get_term($category, 'link_category', OBJECT, 'display');
|
2007-09-18 18:32:22 +02:00
|
|
|
if ( is_wp_error( $cat ) )
|
|
|
|
echo $cat->get_error_message();
|
2007-08-21 00:50:04 +02:00
|
|
|
$cat_name = $cat->name;
|
2006-12-04 01:44:18 +01: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);
|
|
|
|
?> </td><?php
|
|
|
|
break;
|
|
|
|
case 'rel':
|
|
|
|
?><td><?php echo $link->link_rel; ?></td><?php
|
|
|
|
break;
|
|
|
|
case 'visible':
|
2008-02-29 18:09:44 +01:00
|
|
|
?><td style='text-align: center;'><?php echo $visible; ?></td><?php
|
2006-12-04 01:44:18 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
?>
|
2007-05-10 23:08:13 +02:00
|
|
|
<td><?php do_action('manage_link_custom_column', $column_name, $link->link_id); ?></td>
|
2006-12-04 01:44:18 +01:00
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
2006-02-27 05:57:30 +01:00
|
|
|
}
|
2005-08-31 04:39:17 +02:00
|
|
|
echo "\n </tr>\n";
|
2006-02-27 05:57:30 +01:00
|
|
|
}
|
2003-05-22 14:12:53 +02:00
|
|
|
?>
|
2006-03-29 03:51:55 +02:00
|
|
|
</tbody>
|
2003-07-27 01:52:36 +02:00
|
|
|
</table>
|
2008-02-22 18:30:43 +01:00
|
|
|
|
|
|
|
<?php } else { ?>
|
|
|
|
<p><?php _e('No links found.') ?></p>
|
|
|
|
<?php } ?>
|
2008-02-14 06:28:48 +01:00
|
|
|
</form>
|
2003-12-08 04:46:42 +01:00
|
|
|
|
2005-08-31 04:39:17 +02:00
|
|
|
<div id="ajax-response"></div>
|
|
|
|
|
2008-02-13 08:32:50 +01:00
|
|
|
<div class="tablenav">
|
2008-03-15 00:58:31 +01:00
|
|
|
<br class="clear" />
|
2008-02-13 08:32:50 +01:00
|
|
|
</div>
|
|
|
|
|
2006-12-03 22:32:17 +01:00
|
|
|
|
2006-07-04 23:44:08 +02:00
|
|
|
</div>
|
2003-05-22 14:12:53 +02:00
|
|
|
|
2006-03-29 03:51:55 +02:00
|
|
|
<?php include('admin-footer.php'); ?>
|