]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link-manager.php
WordPress 3.9.2-scripts
[autoinstalls/wordpress.git] / wp-admin / link-manager.php
index 42ec2017cc68755a3f608889c2d28aae498fd847..8e12aa3d34686ba3291f9ddb651e9a7d5c9ef364 100644 (file)
 <?php
+/**
+ * Link Management Administration Screen.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
 
-require_once ('admin.php');
+/** Load WordPress Administration Bootstrap */
+require_once( dirname( __FILE__ ) . '/admin.php' );
+if ( ! current_user_can( 'manage_links' ) )
+       wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
+
+$wp_list_table = _get_list_table('WP_Links_List_Table');
 
 // Handle bulk deletes
-if ( isset($_GET['deleteit']) && isset($_GET['linkcheck']) ) {
-       check_admin_referer('bulk-bookmarks');
+$doaction = $wp_list_table->current_action();
 
-       if ( ! current_user_can('manage_links') )
-               wp_die( __('You do not have sufficient permissions to edit the links for this blog.') );
+if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) {
+       check_admin_referer( 'bulk-bookmarks' );
 
-       foreach ( (array) $_GET['linkcheck'] as $link_id) {
-               $link_id = (int) $link_id;
+       if ( 'delete' == $doaction ) {
+               $bulklinks = (array) $_REQUEST['linkcheck'];
+               foreach ( $bulklinks as $link_id ) {
+                       $link_id = (int) $link_id;
 
-               wp_delete_link($link_id);
-       }
+                       wp_delete_link( $link_id );
+               }
 
-       $sendback = wp_get_referer();
-       $sendback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $sendback);
-       wp_redirect($sendback);
-       exit;
-} elseif ( !empty($_GET['_wp_http_referer']) ) {
-        wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI'])));
+               wp_redirect( add_query_arg('deleted', count( $bulklinks ), admin_url( 'link-manager.php' ) ) );
+               exit;
+       }
+} elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
+        wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
         exit;
 }
 
-wp_enqueue_script('admin-forms');
-
-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[]'));
-
-if (empty ($cat_id))
-       $cat_id = 'all';
-
-if (empty ($order_by))
-       $order_by = 'order_name';
-
-$title = __('Manage Links');
-$this_file = $parent_file = 'edit.php';
-include_once ("./admin-header.php");
-
-if (!current_user_can('manage_links'))
-       wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
-
-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;
-}
-
-if ( isset($_GET['deleted']) ) {
-       echo '<div style="background-color: rgb(207, 235, 247);" id="message" class="updated fade"><p>';
-       $deleted = (int) $_GET['deleted'];
-       printf(__ngettext('%s link deleted.', '%s links deleted', $deleted), $deleted);
-       echo '</p></div>';
-       $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
-}
-?>
-
-<div class="wrap">
-
-<form id="posts-filter" action="" method="get">
-<h2><?php printf( __( 'Manage Links (<a href="%s">add new</a>)' ), 'link-add.php' ); ?></h2>
-
-<p id="post-search">
-       <input type="text" id="post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />
-       <input type="submit" value="<?php _e( 'Search Links' ); ?>" class="button" />
-</p>
-
-<br class="clear" />
+$wp_list_table->prepare_items();
+
+$title = __('Links');
+$this_file = $parent_file = 'link-manager.php';
+
+get_current_screen()->add_help_tab( array(
+'id'           => 'overview',
+'title'                => __('Overview'),
+'content'      =>
+       '<p>' . sprintf(__('You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.'), 'widgets.php') . '</p>' .
+    '<p>' . __('Links may be separated into Link Categories; these are different than the categories used on your posts.') . '</p>' .
+    '<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>'
+) );
+get_current_screen()->add_help_tab( array(
+'id'           => 'deleting-links',
+'title'                => __('Deleting Links'),
+'content'      =>
+    '<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>'
+) );
+
+get_current_screen()->set_help_sidebar(
+       '<p><strong>' . __('For more information:') . '</strong></p>' .
+       '<p>' . __('<a href="http://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
+       '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
+);
 
-<div class="tablenav">
+include_once( ABSPATH . 'wp-admin/admin-header.php' );
 
-<div class="alignleft">
-<input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" />
-<?php
-$categories = get_terms('link_category', "hide_empty=1");
-$select_cat = "<select name=\"cat_id\">\n";
-$select_cat .= '<option value="all"'  . (($cat_id == 'all') ? " selected='selected'" : '') . '>' . __('View all Categories') . "</option>\n";
-foreach ((array) $categories as $cat)
-       $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";
-$select_cat .= "</select>\n";
-
-$select_order = "<select name=\"order_by\">\n";
-$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";
-$select_order .= "</select>\n";
-
-echo $select_cat;
-echo $select_order;
+if ( ! current_user_can('manage_links') )
+       wp_die(__("You do not have sufficient permissions to edit the links for this site."));
 
 ?>
-<input type="submit" id="post-query-submit" value="<?php _e('Filter'); ?>" class="button-secondary" />
-
-</div>
 
-<br class="clear" />
-</div>
-
-<br class="clear" />
+<div class="wrap nosubsub">
+<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
+if ( !empty($_REQUEST['s']) )
+       printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( wp_unslash($_REQUEST['s']) ) ); ?>
+</h2>
 
 <?php
-$link_columns = array(
-       'name'       => '<th style="width: 15%;">' . __('Name') . '</th>',
-       '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);
+if ( isset($_REQUEST['deleted']) ) {
+       echo '<div id="message" class="updated"><p>';
+       $deleted = (int) $_REQUEST['deleted'];
+       printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
+       echo '</p></div>';
+       $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
+}
 ?>
 
-<?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 ) {
-?>
+<form id="posts-filter" action="" method="get">
 
-<?php wp_nonce_field('bulk-bookmarks') ?>
-<table class="widefat">
-       <thead>
-       <tr>
-       <th scope="col" class="check-column"><input type="checkbox" onclick="checkAll(document.getElementById('posts-filter'));" /></th>
-<?php foreach($link_columns as $column_display_name) {
-       echo $column_display_name;
-} ?>
-       </tr>
-       </thead>
-       <tbody>
-<?php
-       foreach ($links as $link) {
-               $link = sanitize_bookmark($link);
-               $link->link_name = attribute_escape($link->link_name);
-               $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"';
-               ?><tr id="link-<?php echo $link->link_id; ?>" valign="middle" <?php echo $style; ?>><?php
-               echo '<th scope="row" class="check-column"><input type="checkbox" name="linkcheck[]" value="'.$link->link_id.'" /></th>';
-               foreach($link_columns as $column_name=>$column_display_name) {
-                       switch($column_name) {
-                               case 'name':
-
-                                       echo "<td><strong><a class='row-title' href='link.php?link_id=$link->link_id&amp;action=edit' title='" . attribute_escape(sprintf(__('Edit "%s"'), $link->link_name)) . "' class='edit'>$link->link_name</a></strong><br />";
-                                       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) {
-                                               $cat = get_term($category, 'link_category', OBJECT, 'display');
-                                               if ( is_wp_error( $cat ) )
-                                                       echo $cat->get_error_message();
-                                               $cat_name = $cat->name;
-                                               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':
-                                       ?><td style='text-align: center;'><?php echo $visible; ?></td><?php
-                                       break;
-                               default:
-                                       ?>
-                                       <td><?php do_action('manage_link_custom_column', $column_name, $link->link_id); ?></td>
-                                       <?php
-                                       break;
-
-                       }
-               }
-               echo "\n    </tr>\n";
-       }
-?>
-       </tbody>
-</table>
+<?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
 
-<?php } else { ?>
-<p><?php _e('No links found.') ?></p>
-<?php } ?>
-</form>
+<?php $wp_list_table->display(); ?>
 
 <div id="ajax-response"></div>
-
-<div class="tablenav">
-<br class="clear" />
-</div>
-
+</form>
 
 </div>
 
-<?php include('admin-footer.php'); ?>
+<?php
+include( ABSPATH . 'wp-admin/admin-footer.php' );