2005-09-19 02:47:58 +02:00
< ? php
if ( ! empty ( $link_id ) ) {
2006-07-06 06:27:45 +02:00
$heading = __ ( 'Edit Link' );
2008-02-20 20:30:55 +01:00
$submit_text = __ ( 'Save Changes' );
2006-05-03 00:36:06 +02: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 {
2006-07-06 06:27:45 +02:00
$heading = __ ( 'Add Link' );
2008-02-20 20:30:55 +01:00
$submit_text = __ ( 'Add Link' );
2006-02-27 05:57:30 +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
}
2007-12-06 07:37:30 +01:00
function xfn_check ( $class , $value = '' , $deprecated = '' ) {
2005-11-24 00:07:36 +01:00
global $link ;
$link_rel = $link -> link_rel ;
2005-09-19 02:47:58 +02:00
$rels = preg_split ( '/\s+/' , $link_rel );
if ( '' != $value && in_array ( $value , $rels ) ) {
echo ' checked="checked"' ;
}
if ( '' == $value ) {
2007-03-07 06:29:15 +01:00
if ( 'family' == $class && strpos ( $link_rel , 'child' ) === false && strpos ( $link_rel , 'parent' ) === false && strpos ( $link_rel , 'sibling' ) === false && strpos ( $link_rel , 'spouse' ) === false && strpos ( $link_rel , 'kin' ) === false ) echo ' checked="checked"' ;
if ( 'friendship' == $class && strpos ( $link_rel , 'friend' ) === false && strpos ( $link_rel , 'acquaintance' ) === false && strpos ( $link_rel , 'contact' ) === false ) echo ' checked="checked"' ;
if ( 'geographical' == $class && strpos ( $link_rel , 'co-resident' ) === false && strpos ( $link_rel , 'neighbor' ) === false ) echo ' checked="checked"' ;
2005-09-19 02:47:58 +02:00
if ( 'identity' == $class && in_array ( 'me' , $rels ) ) echo ' checked="checked"' ;
}
}
?>
2006-02-27 05:57:30 +01:00
< ? php echo $form ?>
2006-05-03 00:36:06 +02:00
< ? php wp_nonce_field ( $nonce_action ); ?>
2008-02-08 20:57:50 +01:00
< ? php wp_nonce_field ( 'closedpostboxes' , 'closedpostboxesnonce' , false ); ?>
2006-05-03 00:36:06 +02:00
2008-01-31 21:04:54 +01:00
< div class = " wrap " >
2008-02-20 23:49:04 +01:00
< h2 >< ? php _e ( 'Edit Link' ) ?> </h2>
2008-01-31 21:04:54 +01:00
2006-02-27 05:57:30 +01:00
< div id = " poststuff " >
2008-02-18 20:38:01 +01:00
< div class = " submitbox " id = " submitlink " >
2008-02-20 09:06:03 +01:00
< div id = " previewview " >
< ? php if ( ! empty ( $link_id ) ) { ?>
< a href = " <?php echo $link->link_url ; ?> " target = " _blank " >< ? php _e ( 'Visit Link' ); ?> </a>
< ? php } ?>
</ div >
< div class = " inside " >
< p >< label for = " link_private " class = " selectit " >< input id = " link_private " name = " link_visible " type = " checkbox " value = " N " < ? php checked ( $link -> link_visible , 'N' ); ?> /> <?php _e('Keep this link private') ?></label></p>
</ div >
2008-01-31 21:04:54 +01:00
< p class = " submit " >
2008-02-21 01:27:23 +01:00
< input type = " submit " class = " button " name = " save " value = " <?php _e('Save'); ?> " style = " font-weight: bold; " tabindex = " 4 " />
2008-01-31 21:04:54 +01:00
</ p >
2008-02-21 00:43:06 +01:00
2008-02-22 04:45:19 +01:00
< div class = " side-info " >
< h5 >< ? php _e ( 'Related' ) ?> </h5>
2008-02-21 00:43:06 +01:00
< ul >
< li >< a href = " link-manager.php " >< ? php _e ( 'Manage All Links' ) ?> </a></li>
< li >< a href = " edit-link-categories.php " >< ? php _e ( 'Manage All Categories' ) ?> </a></li>
< li >< a href = " link-import.php " >< ? php _e ( 'Import Links' ) ?> </a></li>
</ ul >
</ div >
2008-02-18 20:38:01 +01:00
< ? php do_action ( 'submitlink_box' ); ?>
2008-01-31 21:04:54 +01:00
</ div >
2008-02-29 09:08:17 +01:00
< div id = " post-body " >
2008-02-22 03:04:17 +01:00
< div id = " namediv " class = " stuffbox " >
< h3 >< ? php _e ( 'Name' ) ?> </h3>
< div class = " inside " >
< input type = " text " name = " link_name " size = " 30 " tabindex = " 1 " value = " <?php echo $link->link_name ; ?> " id = " link_name " />
</ div >
</ div >
< div id = " addressdiv " class = " stuffbox " >
< h3 >< ? php _e ( 'Address' ) ?> </h3>
< div class = " inside " >
< input type = " text " name = " link_url " size = " 30 " tabindex = " 1 " value = " <?php echo $link->link_url ; ?> " id = " link_url " />
</ div >
</ div >
< div id = " descriptiondiv " class = " stuffbox " >
< h3 >< ? php _e ( 'Description' ) ?> </h3>
< div class = " inside " >
< input type = " text " name = " link_description " size = " 30 " tabindex = " 1 " value = " <?php echo $link->link_description ; ?> " id = " link_description " />
</ div >
</ div >
2008-02-08 20:57:50 +01:00
< div id = " linkcategorydiv " class = " postbox <?php echo postbox_classes('linkcategorydiv', 'link'); ?> " >
2008-01-31 21:04:54 +01:00
< h3 >< ? php _e ( 'Categories' ) ?> </h3>
< div class = " inside " >
< div id = " category-adder " class = " wp-hidden-children " >
< h4 >< a id = " category-add-toggle " href = " #category-add " >< ? php _e ( '+ Add New Category' ); ?> </a></h4>
2008-02-02 21:31:56 +01:00
< p id = " link-category-add " class = " wp-hidden-child " >
2008-01-31 21:04:54 +01:00
< input type = " text " name = " newcat " id = " newcat " class = " form-required form-input-tip " value = " <?php _e( 'New category name' ); ?> " />
< input type = " button " id = " category-add-sumbit " class = " add:categorychecklist:linkcategorydiv button " value = " <?php _e( 'Add' ); ?> " />
< ? php wp_nonce_field ( 'add-link-category' , '_ajax_nonce' , false ); ?>
< span id = " category-ajax-response " ></ span >
</ p >
</ div >
< ul id = " category-tabs " >
< li class = " ui-tabs-selected " >< a href = " #categories-all " >< ? php _e ( 'All Categories' ); ?> </a></li>
< li class = " wp-no-js-hidden " >< a href = " #categories-pop " >< ? php _e ( 'Most Used' ); ?> </a></li>
</ ul >
< div id = " categories-all " class = " ui-tabs-panel " >
< ul id = " categorychecklist " class = " list:category categorychecklist form-no-clear " >
< ? php dropdown_link_categories (); ?>
</ ul >
</ div >
< div id = " categories-pop " class = " ui-tabs-panel " style = " display: none; " >
< ul id = " categorychecklist-pop " class = " categorychecklist form-no-clear " >
2008-02-02 21:31:56 +01:00
< ? php wp_popular_terms_checklist ( 'link_category' ); ?>
2008-01-31 21:04:54 +01:00
</ ul >
2006-04-04 02:16:27 +02:00
</ div >
2006-02-27 05:57:30 +01:00
2008-01-31 21:04:54 +01:00
</ div >
</ div >
2008-02-08 22:06:15 +01:00
< ? php do_meta_boxes ( 'link' , 'normal' , $link ); ?>
2008-01-31 21:04:54 +01:00
< h2 >< ? php _e ( 'Advanced Options' ); ?> </h2>
2008-02-08 20:57:50 +01:00
< div id = " linktargetdiv " class = " postbox <?php echo postbox_classes('linktargetdiv', 'link'); ?> " >
2008-01-31 21:04:54 +01:00
< h3 >< ? php _e ( 'Target' ) ?> </h3>
< div class = " inside " >
2006-02-27 05:57:30 +01:00
< label for = " link_target_blank " class = " selectit " >
< input id = " link_target_blank " type = " radio " name = " link_target " value = " _blank " < ? php echo (( $link -> link_target == '_blank' ) ? 'checked="checked"' : '' ); ?> />
< code > _blank </ code ></ label >
< label for = " link_target_top " class = " selectit " >
< input id = " link_target_top " type = " radio " name = " link_target " value = " _top " < ? php echo (( $link -> link_target == '_top' ) ? 'checked="checked"' : '' ); ?> />
< code > _top </ code ></ label >
< label for = " link_target_none " class = " selectit " >
< input id = " link_target_none " type = " radio " name = " link_target " value = " " < ? php echo (( $link -> link_target == '' ) ? 'checked="checked"' : '' ); ?> />
< ? php _e ( 'none' ) ?> </label>
</ div >
2008-01-31 21:04:54 +01:00
</ div >
2006-02-27 05:57:30 +01:00
2008-02-08 20:57:50 +01:00
< div id = " linkxfndiv " class = " postbox <?php echo postbox_classes('linkxfndiv', 'link'); ?> " >
2008-01-31 21:04:54 +01:00
< h3 >< ? php _e ( 'Link Relationship (XFN)' ) ?> </h3>
< div class = " inside " >
2008-02-29 18:09:44 +01:00
< table class = " editform " style = " width: 100%; " cellspacing = " 2 " cellpadding = " 5 " >
2006-02-27 05:57:30 +01:00
< tr >
2008-02-29 18:09:44 +01:00
< th style = " width: 20%; " scope = " row " >< ? php _e ( 'rel:' ) ?> </th>
< td style = " width: 80%; " >< input type = " text " name = " link_rel " id = " link_rel " size = " 50 " value = " <?php echo $link->link_rel ; ?> " /></ td >
2006-02-27 05:57:30 +01:00
</ tr >
< tr >
< th scope = " row " >< ? php _e ( '<a href="http://gmpg.org/xfn/">XFN</a> Creator:' ) ?> </th>
< td >
< table cellpadding = " 3 " cellspacing = " 5 " >
< tr >
< th scope = " row " > < ? php _e ( 'identity' ) ?> </th>
< td >
< label for = " me " >
< input type = " checkbox " name = " identity " value = " me " id = " me " < ? php xfn_check ( 'identity' , 'me' ); ?> />
< ? php _e ( 'another web address of mine' ) ?> </label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'friendship' ) ?> </th>
< td >
< label for = " contact " >
< input class = " valinp " type = " radio " name = " friendship " value = " contact " id = " contact " < ? php xfn_check ( 'friendship' , 'contact' , 'radio' ); ?> /> <?php _e('contact') ?></label>
< label for = " acquaintance " >
< input class = " valinp " type = " radio " name = " friendship " value = " acquaintance " id = " acquaintance " < ? php xfn_check ( 'friendship' , 'acquaintance' , 'radio' ); ?> /> <?php _e('acquaintance') ?></label>
2006-07-05 19:14:29 +02:00
< label for = " friend " >
2006-02-27 05:57:30 +01:00
< input class = " valinp " type = " radio " name = " friendship " value = " friend " id = " friend " < ? php xfn_check ( 'friendship' , 'friend' , 'radio' ); ?> /> <?php _e('friend') ?></label>
< label for = " friendship " >
< input name = " friendship " type = " radio " class = " valinp " value = " " id = " friendship " < ? php xfn_check ( 'friendship' , '' , 'radio' ); ?> /> <?php _e('none') ?></label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'physical' ) ?> </th>
< td >
< label for = " met " >
< input class = " valinp " type = " checkbox " name = " physical " value = " met " id = " met " < ? php xfn_check ( 'physical' , 'met' ); ?> />
< ? php _e ( 'met' ) ?> </label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'professional' ) ?> </th>
< td >
< label for = " co-worker " >
< input class = " valinp " type = " checkbox " name = " professional " value = " co-worker " id = " co-worker " < ? php xfn_check ( 'professional' , 'co-worker' ); ?> />
< ? php _e ( 'co-worker' ) ?> </label>
< label for = " colleague " >
< input class = " valinp " type = " checkbox " name = " professional " value = " colleague " id = " colleague " < ? php xfn_check ( 'professional' , 'colleague' ); ?> />
< ? php _e ( 'colleague' ) ?> </label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'geographical' ) ?> </th>
< td >
< label for = " co-resident " >
< input class = " valinp " type = " radio " name = " geographical " value = " co-resident " id = " co-resident " < ? php xfn_check ( 'geographical' , 'co-resident' , 'radio' ); ?> />
< ? php _e ( 'co-resident' ) ?> </label>
< label for = " neighbor " >
< input class = " valinp " type = " radio " name = " geographical " value = " neighbor " id = " neighbor " < ? php xfn_check ( 'geographical' , 'neighbor' , 'radio' ); ?> />
< ? php _e ( 'neighbor' ) ?> </label>
< label for = " geographical " >
< input class = " valinp " type = " radio " name = " geographical " value = " " id = " geographical " < ? php xfn_check ( 'geographical' , '' , 'radio' ); ?> />
< ? php _e ( 'none' ) ?> </label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'family' ) ?> </th>
< td >
< label for = " child " >
< input class = " valinp " type = " radio " name = " family " value = " child " id = " child " < ? php xfn_check ( 'family' , 'child' , 'radio' ); ?> />
< ? php _e ( 'child' ) ?> </label>
< label for = " kin " >
< input class = " valinp " type = " radio " name = " family " value = " kin " id = " kin " < ? php xfn_check ( 'family' , 'kin' , 'radio' ); ?> />
< ? php _e ( 'kin' ) ?> </label>
< label for = " parent " >
< input class = " valinp " type = " radio " name = " family " value = " parent " id = " parent " < ? php xfn_check ( 'family' , 'parent' , 'radio' ); ?> />
< ? php _e ( 'parent' ) ?> </label>
< label for = " sibling " >
< input class = " valinp " type = " radio " name = " family " value = " sibling " id = " sibling " < ? php xfn_check ( 'family' , 'sibling' , 'radio' ); ?> />
< ? php _e ( 'sibling' ) ?> </label>
< label for = " spouse " >
< input class = " valinp " type = " radio " name = " family " value = " spouse " id = " spouse " < ? php xfn_check ( 'family' , 'spouse' , 'radio' ); ?> />
< ? php _e ( 'spouse' ) ?> </label>
< label for = " family " >
< input class = " valinp " type = " radio " name = " family " value = " " id = " family " < ? php xfn_check ( 'family' , '' , 'radio' ); ?> />
< ? php _e ( 'none' ) ?> </label>
</ td >
</ tr >
< tr >
< th scope = " row " > < ? php _e ( 'romantic' ) ?> </th>
< td >
< label for = " muse " >
< input class = " valinp " type = " checkbox " name = " romantic " value = " muse " id = " muse " < ? php xfn_check ( 'romantic' , 'muse' ); ?> />
< ? php _e ( 'muse' ) ?> </label>
< label for = " crush " >
< input class = " valinp " type = " checkbox " name = " romantic " value = " crush " id = " crush " < ? php xfn_check ( 'romantic' , 'crush' ); ?> />
< ? php _e ( 'crush' ) ?> </label>
< label for = " date " >
< input class = " valinp " type = " checkbox " name = " romantic " value = " date " id = " date " < ? php xfn_check ( 'romantic' , 'date' ); ?> />
< ? php _e ( 'date' ) ?> </label>
< label for = " romantic " >
< input class = " valinp " type = " checkbox " name = " romantic " value = " sweetheart " id = " romantic " < ? php xfn_check ( 'romantic' , 'sweetheart' ); ?> />
< ? php _e ( 'sweetheart' ) ?> </label>
</ td >
</ tr >
</ table >
</ td >
</ tr >
2005-09-19 02:47:58 +02:00
</ table >
2006-02-27 05:57:30 +01:00
</ div >
2008-01-31 21:04:54 +01:00
</ div >
2006-02-27 05:57:30 +01:00
2008-02-08 20:57:50 +01:00
< div id = " linkadvanceddiv " class = " postbox <?php echo postbox_classes('linkadvanceddiv', 'link'); ?> " >
2008-01-31 21:04:54 +01:00
< h3 >< ? php _e ( 'Advanced' ) ?> </h3>
< div class = " inside " >
2008-02-29 18:09:44 +01:00
< table class = " editform " style = " width: 100%; " cellspacing = " 2 " cellpadding = " 5 " >
2006-02-27 05:57:30 +01:00
< tr >
2008-02-29 18:09:44 +01:00
< th style = " width: 20%; " scope = " row " >< ? php _e ( 'Image Address:' ) ?> </th>
< td style = " width: 80%; " >< input type = " text " name = " link_image " size = " 50 " value = " <?php echo $link->link_image ; ?> " style = " width: 95% " /></ td >
2006-02-27 05:57:30 +01:00
</ tr >
< tr >
2006-07-06 06:27:45 +02:00
< th scope = " row " >< ? php _e ( 'RSS Address:' ) ?> </th>
2006-02-27 05:57:30 +01:00
< td >< input name = " link_rss " type = " text " id = " rss_uri " value = " <?php echo $link->link_rss ; ?> " size = " 50 " style = " width: 95% " /></ td >
</ tr >
< tr >
< th scope = " row " >< ? php _e ( 'Notes:' ) ?> </th>
< td >< textarea name = " link_notes " cols = " 50 " rows = " 10 " style = " width: 95% " >< ? php echo $link -> link_notes ; ?> </textarea></td>
</ tr >
< tr >
< th scope = " row " >< ? php _e ( 'Rating:' ) ?> </th>
< td >< select name = " link_rating " size = " 1 " >
< ? php
for ( $r = 0 ; $r < 10 ; $r ++ ) {
echo ( ' <option value="' . $r . '" ' );
if ( $link -> link_rating == $r )
echo 'selected="selected"' ;
echo ( '>' . $r . '</option>' );
}
?> </select> <?php _e('(Leave at 0 for no rating.)') ?>
</ td >
</ tr >
2005-09-19 02:47:58 +02:00
</ table >
2007-08-01 18:14:46 +02:00
</ div >
2006-02-27 05:57:30 +01:00
</ div >
2008-02-08 22:06:15 +01:00
< ? php do_meta_boxes ( 'link' , 'advanced' , $link ); ?>
2006-02-27 05:57:30 +01:00
< ? php if ( $link_id ) : ?>
< input type = " hidden " name = " action " value = " save " />
< input type = " hidden " name = " link_id " value = " <?php echo (int) $link_id ; ?> " />
2006-12-21 11:10:04 +01:00
< input type = " hidden " name = " order_by " value = " <?php echo attribute_escape( $order_by ); ?> " />
2006-02-27 05:57:30 +01:00
< 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-02-29 09:08:17 +01:00
</ div >
2006-02-27 05:57:30 +01:00
</ div >
2008-01-31 21:04:54 +01:00
</ div >
</ form >