Changeset 3570 for trunk/wp-admin/edit-link-form.php
- Timestamp:
- 02/27/2006 04:57:30 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-form.php
r3257 r3570 1 1 <?php 2 2 if ( ! empty($link_id) ) { 3 $editing = true; 4 $heading = __('Edit a link:'); 3 $heading = __('Edit Bookmark'); 5 4 $submit_text = __('Save Changes »'); 6 $form = '<form action="" method="post" name="editlink" id="editlink">';5 $form = '<form name="editlink" id="editlink" method="post" action="link.php">'; 7 6 } else { 8 $editing = false; 9 $heading = __('<strong>Add</strong> a link:'); 10 $submit_text = __('Add Link »'); 11 $form = '<form name="addlink" method="post" action="link-manager.php">'; 7 $heading = __('Create Bookmark'); 8 $submit_text = __('Add Bookmark »'); 9 $form = '<form name="addlink" id="addlink" method="post" action="link.php">'; 12 10 } 13 11 … … 29 27 } 30 28 } 31 32 29 ?> 33 30 34 31 <div class="wrap"> 35 <?php echo $form ?> 36 <h2><?php echo $heading ?></h2> 37 <fieldset class="options"> 38 <legend><?php _e('Basics') ?></legend> 39 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 40 <tr> 41 <th width="33%" scope="row"><?php _e('URI:') ?></th> 42 <td width="67%"><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%;" /></td> 43 </tr> 44 <tr> 45 <th scope="row"><?php _e('Link Name:') ?></th> 46 <td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> 47 </tr> 48 <tr> 49 <th scope="row"><?php _e('Short description:') ?></th> 50 <td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> 51 </tr> 52 <tr> 53 <th scope="row"><?php _e('Category:') ?></th> 54 <td><?php link_category_dropdown('link_category', $link->link_category); ?></td> 55 </tr> 32 <h2><?php echo $heading ?></h2> 33 <?php echo $form ?> 34 35 <div id="poststuff"> 36 <div id="moremeta"> 37 <div id="grabit" class="dbx-group"> 38 39 <fieldset id="categorydiv" class="dbx-box"> 40 <h3 class="dbx-handle"><?php _e('Categories') ?></h3> 41 <div class="dbx-content"> 42 <p id="jaxcat"></p> 43 <div id="categorychecklist"><?php dropdown_categories(get_settings('default_link_category')); ?></div></div> 44 </fieldset> 45 46 <fieldset class="dbx-box"> 47 <h3 class="dbx-handle"><?php _e('Target') ?></h3> 48 <div class="dbx-content"> 49 <label for="link_target_blank" class="selectit"> 50 <input id="link_target_blank" type="radio" name="link_target" value="_blank" <?php echo(($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 51 <code>_blank</code></label> 52 <label for="link_target_top" class="selectit"> 53 <input id="link_target_top" type="radio" name="link_target" value="_top" <?php echo(($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> 54 <code>_top</code></label> 55 <label for="link_target_none" class="selectit"> 56 <input id="link_target_none" type="radio" name="link_target" value="" <?php echo(($link->link_target == '') ? 'checked="checked"' : ''); ?> /> 57 <?php _e('none') ?></label> 58 </div> 59 </fieldset> 60 61 <fieldset class="dbx-box"> 62 <h3 class="dbx-handle"><?php _e('Visible') ?></h3> 63 <div class="dbx-content"> 64 <label for="link_visible_yes" class="selectit"> 65 <input id="link_visible_yes" type="radio" name="link_visible" <?php if ($link->link_visible == 'Y') echo "checked='checked'"; ?> value="Y" /> 66 <?php _e('Yes') ?></label> 67 <label for="link_visible_no" class="selectit"> 68 <input id="link_visible_no" type="radio" name="link_visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" /> 69 <?php _e('No') ?></label> 70 </div> 71 </fieldset> 72 73 </div> 74 </div> 75 76 <fieldset id="uridiv"> 77 <legend><?php _e('URI:') ?></legend> 78 <div><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></div> 79 </fieldset> 80 81 <fieldset id="namediv"> 82 <legend><?php _e('Name:') ?></legend> 83 <div><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></div> 84 </fieldset> 85 86 <fieldset id="descdiv"> 87 <legend><?php _e('Description:') ?></legend> 88 <div><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></div> 89 </fieldset> 90 91 <p class="submit"> 92 <input type="submit" name="submit" value="<?php echo $submit_text ?>" /> 93 </p> 94 95 <div id="advancedstuff" class="dbx-group" > 96 97 <fieldset id="xfn" class="dbx-box"> 98 <h3 class="dbx-handle"><?php _e('Link Relationship (XFN)') ?></h3> 99 <div class="dbx-content"> 100 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 101 <tr> 102 <th width="33%" scope="row"><?php _e('rel:') ?></th> 103 <td width="67%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td> 104 </tr> 105 <tr> 106 <th scope="row"><?php _e('<a href="http://gmpg.org/xfn/">XFN</a> Creator:') ?></th> 107 <td> 108 <table cellpadding="3" cellspacing="5"> 109 <tr> 110 <th scope="row"> <?php _e('identity') ?> </th> 111 <td> 112 <label for="me"> 113 <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> /> 114 <?php _e('another web address of mine') ?></label> 115 </td> 116 </tr> 117 <tr> 118 <th scope="row"> <?php _e('friendship') ?> </th> 119 <td> 120 <label for="contact"> 121 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact', 'radio'); ?> /> <?php _e('contact') ?></label> 122 <label for="acquaintance"> 123 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance', 'radio'); ?> /> <?php _e('acquaintance') ?></label> 124 <label id="friend"> 125 <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend', 'radio'); ?> /> <?php _e('friend') ?></label> 126 <label for="friendship"> 127 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship', '', 'radio'); ?> /> <?php _e('none') ?></label> 128 </td> 129 </tr> 130 <tr> 131 <th scope="row"> <?php _e('physical') ?> </th> 132 <td> 133 <label for="met"> 134 <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> /> 135 <?php _e('met') ?></label> 136 </td> 137 </tr> 138 <tr> 139 <th scope="row"> <?php _e('professional') ?> </th> 140 <td> 141 <label for="co-worker"> 142 <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> /> 143 <?php _e('co-worker') ?></label> 144 <label for="colleague"> 145 <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> /> 146 <?php _e('colleague') ?></label> 147 </td> 148 </tr> 149 <tr> 150 <th scope="row"> <?php _e('geographical') ?> </th> 151 <td> 152 <label for="co-resident"> 153 <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident', 'radio'); ?> /> 154 <?php _e('co-resident') ?></label> 155 <label for="neighbor"> 156 <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor', 'radio'); ?> /> 157 <?php _e('neighbor') ?></label> 158 <label for="geographical"> 159 <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical', '', 'radio'); ?> /> 160 <?php _e('none') ?></label> 161 </td> 162 </tr> 163 <tr> 164 <th scope="row"> <?php _e('family') ?> </th> 165 <td> 166 <label for="child"> 167 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child', 'radio'); ?> /> 168 <?php _e('child') ?></label> 169 <label for="kin"> 170 <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin', 'radio'); ?> /> 171 <?php _e('kin') ?></label> 172 <label for="parent"> 173 <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent', 'radio'); ?> /> 174 <?php _e('parent') ?></label> 175 <label for="sibling"> 176 <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling', 'radio'); ?> /> 177 <?php _e('sibling') ?></label> 178 <label for="spouse"> 179 <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse', 'radio'); ?> /> 180 <?php _e('spouse') ?></label> 181 <label for="family"> 182 <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family', '', 'radio'); ?> /> 183 <?php _e('none') ?></label> 184 </td> 185 </tr> 186 <tr> 187 <th scope="row"> <?php _e('romantic') ?> </th> 188 <td> 189 <label for="muse"> 190 <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> /> 191 <?php _e('muse') ?></label> 192 <label for="crush"> 193 <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> /> 194 <?php _e('crush') ?></label> 195 <label for="date"> 196 <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> /> 197 <?php _e('date') ?></label> 198 <label for="romantic"> 199 <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> /> 200 <?php _e('sweetheart') ?></label> 201 </td> 202 </tr> 203 </table> 204 </td> 205 </tr> 56 206 </table> 57 </fieldset> 58 <p class="submit"> 59 <input type="submit" name="submit" value="<?php echo $submit_text ?>" /> 60 </p> 61 <fieldset class="options"> 62 <legend><?php _e('Link Relationship (XFN)') ?></legend> 63 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 64 <tr> 65 <th width="33%" scope="row"><?php _e('rel:') ?></th> 66 <td width="67%"><input type="text" name="link_rel" id="link_rel" size="50" value="<?php echo $link->link_rel; ?>" /></td> 67 </tr> 68 <tr> 69 <th scope="row"><?php _e('<a href="http://gmpg.org/xfn/">XFN</a> Creator:') ?></th> 70 <td> 71 <table cellpadding="3" cellspacing="5"> 72 <tr> 73 <th scope="row"> <?php _e('identity') ?> </th> 74 <td> 75 <label for="me"> 76 <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> /> 77 <?php _e('another web address of mine') ?></label> 78 </td> 79 </tr> 80 <tr> 81 <th scope="row"> <?php _e('friendship') ?> </th> 82 <td> 83 <label for="contact"> 84 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact', 'radio'); ?> /> <?php _e('contact') ?></label> 85 <label for="acquaintance"> 86 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance', 'radio'); ?> /> <?php _e('acquaintance') ?></label> 87 <label id="friend"> 88 <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend', 'radio'); ?> /> <?php _e('friend') ?></label> 89 <label for="friendship"> 90 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship', '', 'radio'); ?> /> <?php _e('none') ?></label> 91 </td> 92 </tr> 93 <tr> 94 <th scope="row"> <?php _e('physical') ?> </th> 95 <td> 96 <label for="met"> 97 <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> /> 98 <?php _e('met') ?></label> 99 </td> 100 </tr> 101 <tr> 102 <th scope="row"> <?php _e('professional') ?> </th> 103 <td> 104 <label for="co-worker"> 105 <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> /> 106 <?php _e('co-worker') ?></label> 107 <label for="colleague"> 108 <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> /> 109 <?php _e('colleague') ?></label> 110 </td> 111 </tr> 112 <tr> 113 <th scope="row"> <?php _e('geographical') ?> </th> 114 <td> 115 <label for="co-resident"> 116 <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident', 'radio'); ?> /> 117 <?php _e('co-resident') ?></label> 118 <label for="neighbor"> 119 <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor', 'radio'); ?> /> 120 <?php _e('neighbor') ?></label> 121 <label for="geographical"> 122 <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical', '', 'radio'); ?> /> 123 <?php _e('none') ?></label> 124 </td> 125 </tr> 126 <tr> 127 <th scope="row"> <?php _e('family') ?> </th> 128 <td> 129 <label for="child"> 130 <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child', 'radio'); ?> /> 131 <?php _e('child') ?></label> 132 <label for="kin"> 133 <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin', 'radio'); ?> /> 134 <?php _e('kin') ?></label> 135 <label for="parent"> 136 <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent', 'radio'); ?> /> 137 <?php _e('parent') ?></label> 138 <label for="sibling"> 139 <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling', 'radio'); ?> /> 140 <?php _e('sibling') ?></label> 141 <label for="spouse"> 142 <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse', 'radio'); ?> /> 143 <?php _e('spouse') ?></label> 144 <label for="family"> 145 <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family', '', 'radio'); ?> /> 146 <?php _e('none') ?></label> 147 </td> 148 </tr> 149 <tr> 150 <th scope="row"> <?php _e('romantic') ?> </th> 151 <td> 152 <label for="muse"> 153 <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> /> 154 <?php _e('muse') ?></label> 155 <label for="crush"> 156 <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> /> 157 <?php _e('crush') ?></label> 158 <label for="date"> 159 <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> /> 160 <?php _e('date') ?></label> 161 <label for="romantic"> 162 <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> /> 163 <?php _e('sweetheart') ?></label> 164 </td> 165 </tr> 166 </table> 167 </td> 168 </tr> 207 </div> 208 </fieldset> 209 210 <fieldset id="advanced" class="dbx-box"> 211 <h3 class="dbx-handle"><?php _e('Advanced') ?></h3> 212 <div class="dbx-content"> 213 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 214 <tr> 215 <th width="33%" scope="row"><?php _e('Image URI:') ?></th> 216 <td width="67%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td> 217 </tr> 218 <tr> 219 <th scope="row"><?php _e('RSS URI:') ?> </th> 220 <td><input name="link_rss" type="text" id="rss_uri" value="<?php echo $link->link_rss; ?>" size="50" style="width: 95%" /></td> 221 </tr> 222 <tr> 223 <th scope="row"><?php _e('Notes:') ?></th> 224 <td><textarea name="link_notes" cols="50" rows="10" style="width: 95%"><?php echo $link->link_notes; ?></textarea></td> 225 </tr> 226 <tr> 227 <th scope="row"><?php _e('Rating:') ?></th> 228 <td><select name="link_rating" size="1"> 229 <?php 230 for ($r = 0; $r < 10; $r++) { 231 echo(' <option value="'.$r.'" '); 232 if ($link->link_rating == $r) 233 echo 'selected="selected"'; 234 echo('>'.$r.'</option>'); 235 } 236 ?></select> <?php _e('(Leave at 0 for no rating.)') ?> 237 </td> 238 </tr> 169 239 </table> 170 240 </fieldset> 171 <p class="submit"> 172 <input type="submit" name="submit" value="<?php echo $submit_text ?>" /> 173 </p> 174 <fieldset class="options"> 175 <legend><?php _e('Advanced') ?></legend> 176 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 177 <tr> 178 <th width="33%" scope="row"><?php _e('Image URI:') ?></th> 179 <td width="67%"><input type="text" name="link_image" size="50" value="<?php echo $link->link_image; ?>" style="width: 95%" /></td> 180 </tr> 181 <tr> 182 <th scope="row"><?php _e('RSS URI:') ?> </th> 183 <td><input name="link_rss" type="text" id="rss_uri" value="<?php echo $link->link_rss; ?>" size="50" style="width: 95%" /></td> 184 </tr> 185 <tr> 186 <th scope="row"><?php _e('Notes:') ?></th> 187 <td><textarea name="link_notes" cols="50" rows="10" style="width: 95%"><?php echo $link->link_notes; ?></textarea></td> 188 </tr> 189 <tr> 190 <th scope="row"><?php _e('Rating:') ?></th> 191 <td><select name="link_rating" size="1"> 192 <?php 193 for ($r = 0; $r < 10; $r++) { 194 echo(' <option value="'.$r.'" '); 195 if ($link->link_rating == $r) 196 echo 'selected="selected"'; 197 echo('>'.$r.'</option>'); 198 } 199 ?> 200 </select> 201 <?php _e('(Leave at 0 for no rating.)') ?> </td> 202 </tr> 203 <tr> 204 <th scope="row"><?php _e('Target') ?></th> 205 <td><label> 206 <input type="radio" name="link_target" value="_blank" <?php echo(($link->link_target == '_blank') ? 'checked="checked"' : ''); ?> /> 207 <code>_blank</code></label><br /> 208 <label> 209 <input type="radio" name="link_target" value="_top" <?php echo(($link->link_target == '_top') ? 'checked="checked"' : ''); ?> /> 210 <code>_top</code></label><br /> 211 <label> 212 <input type="radio" name="link_target" value="" <?php echo(($link->link_target == '') ? 'checked="checked"' : ''); ?> /> 213 <?php _e('none') ?></label><br /> 214 <?php _e('(Note that the <code>target</code> attribute is illegal in XHTML 1.1 and 1.0 Strict.)') ?></td> 215 </tr> 216 <tr> 217 <th scope="row"><?php _e('Visible:') ?></th> 218 <td><label> 219 <input type="radio" name="link_visible" <?php if ($link->link_visible == 'Y') echo "checked='checked'"; ?> value="Y" /> 220 <?php _e('Yes') ?></label><br /><label> 221 <input type="radio" name="link_visible" <?php if ($link->link_visible == 'N') echo "checked='checked'"; ?> value="N" /> 222 <?php _e('No') ?></label></td> 223 </tr> 224 </table> 225 </fieldset> 226 <p class="submit"><input type="submit" name="submit" value="<?php echo $submit_text ?>" /></p> 227 <?php if ( $editing ) : ?> 228 <input type="hidden" name="action" value="editlink" /> 229 <input type="hidden" name="link_id" value="<?php echo (int) $link_id; ?>" /> 230 <input type="hidden" name="order_by" value="<?php echo wp_specialchars($order_by, 1); ?>" /> 231 <input type="hidden" name="cat_id" value="<?php echo (int) $cat_id ?>" /> 241 </div> 242 243 <?php if ( $link_id ) : ?> 244 <input type="hidden" name="action" value="save" /> 245 <input type="hidden" name="link_id" value="<?php echo (int) $link_id; ?>" /> 246 <input type="hidden" name="order_by" value="<?php echo wp_specialchars($order_by, 1); ?>" /> 247 <input type="hidden" name="cat_id" value="<?php echo (int) $cat_id ?>" /> 232 248 <?php else: ?> 233 <input type="hidden" name="action" value="Add" />249 <input type="hidden" name="action" value="add" /> 234 250 <?php endif; ?> 235 </form> 236 </div> 251 </div> 252 </form> 253 </div>
Note: See TracChangeset
for help on using the changeset viewer.