2005-09-19 02:47:58 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Edit links form for inclusion in administration panels .
*
* @ package WordPress
* @ subpackage Administration
*/
2009-08-03 02:04:45 +02:00
// don't load directly
if ( ! defined ( 'ABSPATH' ) )
die ( '-1' );
2005-09-19 02:47:58 +02:00
if ( ! empty ( $link_id ) ) {
2008-08-20 23:42:31 +02:00
$heading = sprintf ( __ ( '<a href="%s">Links</a> / Edit Link' ), 'link-manager.php' );
2008-12-09 10:07:36 +01:00
$submit_text = __ ( 'Update Link' );
2008-03-18 20:37:31 +01:00
$form = '<form name="editlink" id="editlink" method="post" action="link.php">' ;
2006-05-27 01:08:05 +02:00
$nonce_action = 'update-bookmark_' . $link_id ;
2005-09-19 02:47:58 +02:00
} else {
2008-08-20 23:42:31 +02:00
$heading = sprintf ( __ ( '<a href="%s">Links</a> / Add New Link' ), 'link-manager.php' );
2008-02-20 20:30:55 +01:00
$submit_text = __ ( 'Add Link' );
2008-03-18 20:37:31 +01:00
$form = '<form name="addlink" id="addlink" method="post" action="link.php">' ;
2006-05-03 00:36:06 +02:00
$nonce_action = 'add-bookmark' ;
2005-09-19 02:47:58 +02:00
}
2010-04-18 08:14:45 +02:00
require_once ( './includes/meta-boxes.php' );
2008-02-20 09:06:03 +01:00
2011-10-19 23:43:02 +02:00
add_meta_box ( 'linksubmitdiv' , __ ( 'Save' ), 'link_submit_meta_box' , null , 'side' , 'core' );
add_meta_box ( 'linkcategorydiv' , __ ( 'Categories' ), 'link_categories_meta_box' , null , 'normal' , 'core' );
add_meta_box ( 'linktargetdiv' , __ ( 'Target' ), 'link_target_meta_box' , null , 'normal' , 'core' );
add_meta_box ( 'linkxfndiv' , __ ( 'Link Relationship (XFN)' ), 'link_xfn_meta_box' , null , 'normal' , 'core' );
add_meta_box ( 'linkadvanceddiv' , __ ( 'Advanced' ), 'link_advanced_meta_box' , null , 'normal' , 'core' );
2008-11-11 23:40:16 +01:00
2010-04-09 17:17:57 +02:00
do_action ( 'add_meta_boxes' , 'link' , $link );
do_action ( 'add_meta_boxes_link' , $link );
2008-11-11 23:40:16 +01:00
do_action ( 'do_meta_boxes' , 'link' , 'normal' , $link );
do_action ( 'do_meta_boxes' , 'link' , 'advanced' , $link );
do_action ( 'do_meta_boxes' , 'link' , 'side' , $link );
2011-10-07 06:57:12 +02:00
add_screen_option ( 'layout_columns' , array ( 'max' => 2 , 'default' => 2 ) );
2010-10-07 21:34:18 +02:00
2011-12-01 03:22:07 +01:00
get_current_screen () -> add_help_tab ( array (
'id' => 'overview' ,
'title' => __ ( 'Overview' ),
'content' =>
2011-10-07 06:57:12 +02:00
'<p>' . __ ( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.' ) . '</p>' .
'<p>' . __ ( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '</p>' .
2011-11-02 04:12:37 +01:00
'<p>' . __ ( 'XFN stands for <a href="http://gmpg.org/xfn/" target="_blank">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>'
2011-12-01 03:22:07 +01:00
) );
2011-11-02 04:12:37 +01:00
2011-11-02 21:14:10 +01:00
get_current_screen () -> set_help_sidebar (
2011-10-07 06:57:12 +02:00
'<p><strong>' . __ ( 'For more information:' ) . '</strong></p>' .
'<p>' . __ ( '<a href="http://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .
'<p>' . __ ( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
2010-05-26 00:45:18 +02:00
);
2010-01-15 17:58:36 +01:00
2008-11-11 23:40:16 +01:00
require_once ( 'admin-header.php' );
?>
2011-09-21 08:16:24 +02:00
2012-04-24 00:40:59 +02:00
< div class = " wrap " >
2008-11-26 14:51:25 +01:00
< ? php screen_icon (); ?>
2011-05-19 21:52:11 +02:00
< h2 >< ? php echo esc_html ( $title ); ?> <a href="link-add.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a></h2>
2008-09-13 21:12:55 +02:00
2008-11-15 00:01:16 +01:00
< ? php if ( isset ( $_GET [ 'added' ] ) ) : ?>
2009-12-26 10:00:58 +01:00
< div id = " message " class = " updated " >< p >< ? php _e ( 'Link added.' ); ?> </p></div>
2008-11-11 23:40:16 +01:00
< ? php endif ; ?>
2008-09-28 06:11:27 +02:00
< ? php
2008-11-04 04:22:24 +01:00
if ( ! empty ( $form ) )
echo $form ;
if ( ! empty ( $link_added ) )
echo $link_added ;
2008-09-28 06:11:27 +02:00
wp_nonce_field ( $nonce_action );
wp_nonce_field ( 'closedpostboxes' , 'closedpostboxesnonce' , false );
wp_nonce_field ( 'meta-box-order' , 'meta-box-order-nonce' , false ); ?>
2008-08-20 23:42:31 +02:00
2012-03-23 22:41:00 +01:00
< div id = " poststuff " >
2008-08-20 23:42:31 +02:00
2012-04-24 22:46:04 +02:00
< div id = " post-body " class = " metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?> " >
2009-04-04 12:21:43 +02:00
< div id = " post-body-content " >
2008-08-20 23:42:31 +02:00
< div id = " namediv " class = " stuffbox " >
2011-06-11 00:13:26 +02:00
< h3 >< label for = " link_name " >< ? php _ex ( 'Name' , 'link name' ) ?> </label></h3>
2008-08-20 23:42:31 +02:00
< div class = " inside " >
2012-07-24 02:15:15 +02:00
< input type = " text " name = " link_name " size = " 30 " value = " <?php echo esc_attr( $link->link_name ); ?> " id = " link_name " />
2008-11-15 00:58:17 +01:00
< p >< ? php _e ( 'Example: Nifty blogging software' ); ?> </p>
2008-08-20 23:42:31 +02:00
</ div >
</ div >
< div id = " addressdiv " class = " stuffbox " >
< h3 >< label for = " link_url " >< ? php _e ( 'Web Address' ) ?> </label></h3>
< div class = " inside " >
2012-07-24 02:15:15 +02:00
< input type = " text " name = " link_url " size = " 30 " class = " code " value = " <?php echo esc_attr( $link->link_url ); ?> " id = " link_url " />
2008-11-15 00:58:17 +01:00
< p >< ? php _e ( 'Example: <code>http://wordpress.org/</code> — don’t forget the <code>http://</code>' ); ?> </p>
2008-08-20 23:42:31 +02:00
</ div >
</ div >
< div id = " descriptiondiv " class = " stuffbox " >
< h3 >< label for = " link_description " >< ? php _e ( 'Description' ) ?> </label></h3>
< div class = " inside " >
2012-07-24 02:15:15 +02:00
< input type = " text " name = " link_description " size = " 30 " value = " <?php echo isset( $link->link_description ) ? esc_attr( $link->link_description ) : ''; ?> " id = " link_description " />
2008-11-15 00:58:17 +01:00
< p >< ? php _e ( 'This will be shown when someone hovers over the link in the blogroll, or optionally below the link.' ); ?> </p>
2008-08-20 23:42:31 +02:00
</ div >
</ div >
2012-03-23 22:41:00 +01:00
</ div ><!-- / post - body - content -->
2008-08-20 23:42:31 +02:00
2012-03-23 22:41:00 +01:00
< div id = " postbox-container-1 " class = " postbox-container " >
2008-12-09 19:03:31 +01:00
< ? php
2008-08-20 23:42:31 +02:00
2012-03-23 22:41:00 +01:00
do_action ( 'submitlink_box' );
$side_meta_boxes = do_meta_boxes ( 'link' , 'side' , $link );
?>
</ div >
< div id = " postbox-container-2 " class = " postbox-container " >
< ? php
2011-09-21 08:16:24 +02:00
2011-10-19 23:43:02 +02:00
do_meta_boxes ( null , 'normal' , $link );
2006-02-27 05:57:30 +01:00
2011-10-19 23:43:02 +02:00
do_meta_boxes ( null , 'advanced' , $link );
2008-02-08 22:06:15 +01:00
2012-03-23 22:41:00 +01:00
?>
</ div >
< ? php
2008-05-30 23:16:15 +02:00
if ( $link_id ) : ?>
2006-02-27 05:57:30 +01:00
< input type = " hidden " name = " action " value = " save " />
< input type = " hidden " name = " link_id " value = " <?php echo (int) $link_id ; ?> " />
< input type = " hidden " name = " cat_id " value = " <?php echo (int) $cat_id ?> " />
2005-09-19 02:47:58 +02:00
< ? php else : ?>
2006-02-27 05:57:30 +01:00
< input type = " hidden " name = " action " value = " add " />
2005-09-19 02:47:58 +02:00
< ? php endif ; ?>
2008-01-31 21:04:54 +01:00
2008-08-20 23:42:31 +02:00
</ div >
</ div >
2008-01-31 21:04:54 +01:00
</ form >
2008-10-17 05:49:43 +02:00
</ div >