mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 09:49:37 +01:00
ad1ee85dc5
git-svn-id: http://svn.automattic.com/wordpress/trunk@4999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
require_once('admin.php');
|
|
|
|
$title = __('Add Link');
|
|
$this_file = 'link-manager.php';
|
|
$parent_file = 'link-manager.php';
|
|
|
|
|
|
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[]'));
|
|
|
|
wp_enqueue_script( array('xfn', 'dbx-admin-key?pagenow=link.php') );
|
|
if ( current_user_can( 'manage_categories' ) )
|
|
wp_enqueue_script( 'ajaxcat' );
|
|
require('admin-header.php');
|
|
?>
|
|
|
|
<?php if ($_GET['added'] && '' != $_POST['link_name']) : ?>
|
|
<div id="message" class="updated fade"><p><?php _e('Link added.'); ?></p></div>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
$link = get_default_link_to_edit();
|
|
include('edit-link-form.php');
|
|
?>
|
|
|
|
<div id="wp-link-bookmarklet" class="wrap">
|
|
<h3><?php _e('Add Link Bookmarklet'); ?></h3>
|
|
<p><?php _e('Right click on the following link and choose “Bookmark This Link...” or “Add to Favorites...” to create a Link This shortcut.'); ?></p>
|
|
<?php printf('<p><a href="%s" title="'.__('Link add bookmarklet').'">'.__('Link This').'</a></p>', "javascript:void(linkmanpopup=window.open('" . get_option('siteurl') . "/wp-admin/link-add.php?action=popup&linkurl='+escape(location.href)+'&name='+escape(document.title),'LinkManager','scrollbars=yes,width=750,height=550,left=15,top=15,status=yes,resizable=yes'));linkmanpopup.focus();window.focus();linkmanpopup.focus();") ?>
|
|
</div>
|
|
|
|
<?php
|
|
require('admin-footer.php');
|
|
?>
|