]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-link-form.php
d782813e53d0c79b9540362d78cc4064b349eed2
[autoinstalls/wordpress.git] / wp-admin / edit-link-form.php
1 <?php
2 if ( ! empty($link_id) ) {
3         $editing = true;
4         $heading = __('Edit a link:');
5         $submit_text = __('Save Changes &raquo;');
6         $form = '<form action="" method="post" name="editlink" id="editlink">'; 
7 } else {
8         $editing = false;
9         $heading = __('<strong>Add</strong> a link:');
10         $submit_text = __('Add Link &raquo;');
11         $form = '<form name="addlink" method="post" action="link-manager.php">';
12 }
13
14 function xfn_check($class, $value = '', $type = 'check') {
15         global $link;
16
17         $link_rel = $link->link_rel;
18         $rels = preg_split('/\s+/', $link_rel);
19
20         if ('' != $value && in_array($value, $rels) ) {
21                 echo ' checked="checked"';
22         }
23
24         if ('' == $value) {
25                 if ('family' == $class && !strstr($link_rel, 'child') && !strstr($link_rel, 'parent') && !strstr($link_rel, 'sibling') && !strstr($link_rel, 'spouse') && !strstr($link_rel, 'kin')) echo ' checked="checked"';
26                 if ('friendship' == $class && !strstr($link_rel, 'friend') && !strstr($link_rel, 'acquaintance') && !strstr($link_rel, 'contact') ) echo ' checked="checked"';
27                 if ('geographical' == $class && !strstr($link_rel, 'co-resident') && !strstr($link_rel, 'neighbor') ) echo ' checked="checked"';
28                 if ('identity' == $class && in_array('me', $rels) ) echo ' checked="checked"';
29         }
30 }
31
32 ?>
33
34 <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>
56 </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>
169 </table>
170 </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          &nbsp;<?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 ?>" />
232 <?php else: ?>
233         <input type="hidden" name="action" value="Add" />
234 <?php endif; ?>
235 </form> 
236 </div>