]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-permalink.php
Wordpress 2.8-scripts
[autoinstalls/wordpress.git] / wp-admin / options-permalink.php
1 <?php
2 /**
3  * Permalink settings administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once('admin.php');
11
12 $title = __('Permalink Settings');
13 $parent_file = 'options-general.php';
14
15 /**
16  * Display JavaScript on the page.
17  *
18  * @package WordPress
19  * @subpackage Permalink_Settings_Panel
20  */
21 function add_js() {
22 ?>
23 <script type="text/javascript">
24 //<![CDATA[
25 function GetElementsWithClassName(elementName, className) {
26 var allElements = document.getElementsByTagName(elementName);
27 var elemColl = new Array();
28 for (i = 0; i < allElements.length; i++) {
29 if (allElements[i].className == className) {
30 elemColl[elemColl.length] = allElements[i];
31 }
32 }
33 return elemColl;
34 }
35
36 function upit() {
37 var inputColl = GetElementsWithClassName('input', 'tog');
38 var structure = document.getElementById('permalink_structure');
39 var inputs = '';
40 for (i = 0; i < inputColl.length; i++) {
41 if ( inputColl[i].checked && inputColl[i].value != '') {
42 inputs += inputColl[i].value + ' ';
43 }
44 }
45 inputs = inputs.substr(0,inputs.length - 1);
46 if ( 'custom' != inputs )
47 structure.value = inputs;
48 }
49
50 function blurry() {
51 if (!document.getElementById) return;
52
53 var structure = document.getElementById('permalink_structure');
54 structure.onfocus = function () { document.getElementById('custom_selection').checked = 'checked'; }
55
56 var aInputs = document.getElementsByTagName('input');
57
58 for (var i = 0; i < aInputs.length; i++) {
59 aInputs[i].onclick = aInputs[i].onkeyup = upit;
60 }
61 }
62
63 window.onload = blurry;
64 //]]>
65 </script>
66 <?php
67 }
68 add_filter('admin_head', 'add_js');
69
70 include('admin-header.php');
71
72 $home_path = get_home_path();
73 $iis7_permalinks = iis7_supports_permalinks();
74
75 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
76         check_admin_referer('update-permalink');
77
78         if ( isset($_POST['permalink_structure']) ) {
79                 $permalink_structure = $_POST['permalink_structure'];
80                 if (! empty($permalink_structure) )
81                         $permalink_structure = preg_replace('#/+#', '/', '/' . $_POST['permalink_structure']);
82                 $wp_rewrite->set_permalink_structure($permalink_structure);
83         }
84
85         if ( isset($_POST['category_base']) ) {
86                 $category_base = $_POST['category_base'];
87                 if (! empty($category_base) )
88                         $category_base = preg_replace('#/+#', '/', '/' . $_POST['category_base']);
89                 $wp_rewrite->set_category_base($category_base);
90         }
91
92         if ( isset($_POST['tag_base']) ) {
93                 $tag_base = $_POST['tag_base'];
94                 if (! empty($tag_base) )
95                         $tag_base = preg_replace('#/+#', '/', '/' . $_POST['tag_base']);
96                 $wp_rewrite->set_tag_base($tag_base);
97         }
98 }
99
100 $permalink_structure = get_option('permalink_structure');
101 $category_base = get_option('category_base');
102 $tag_base = get_option( 'tag_base' );
103
104 if ( $iis7_permalinks ) {
105         if ( ( ! file_exists($home_path . 'web.config') && win_is_writable($home_path) ) || win_is_writable($home_path . 'web.config') )
106                 $writable = true;
107         else
108                 $writable = false;
109 } else {
110         if ( ( ! file_exists($home_path . '.htaccess') && is_writable($home_path) ) || is_writable($home_path . '.htaccess') )
111                 $writable = true;
112         else
113                 $writable = false;
114 }
115
116 if ( $wp_rewrite->using_index_permalinks() )
117         $usingpi = true;
118 else
119         $usingpi = false;
120
121 $wp_rewrite->flush_rules();
122 ?>
123
124 <?php if (isset($_POST['submit'])) : ?>
125 <div id="message" class="updated fade"><p><?php
126 if ( $iis7_permalinks ) {
127         if ( $permalink_structure && ! $usingpi && ! $writable )
128                 _e('You should update your web.config now');
129         else if ( $permalink_structure && ! $usingpi && $writable)
130                 _e('Permalink structure updated. Remove write access on web.config file now!');
131         else
132                 _e('Permalink structure updated');
133 } else {
134         if ( $permalink_structure && ! $usingpi && ! $writable )
135                 _e('You should update your .htaccess now.');
136         else
137                 _e('Permalink structure updated.');
138 }
139 ?>
140 </p></div>
141 <?php endif; ?>
142
143 <div class="wrap">
144 <?php screen_icon(); ?>
145 <h2><?php echo esc_html( $title ); ?></h2>
146
147 <form name="form" action="options-permalink.php" method="post">
148 <?php wp_nonce_field('update-permalink') ?>
149
150   <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>
151
152 <?php
153 $prefix = '';
154
155 if ( ! got_mod_rewrite() && ! $iis7_permalinks )
156         $prefix = '/index.php';
157
158 $structures = array(
159         '',
160         $prefix . '/%year%/%monthnum%/%day%/%postname%/',
161         $prefix . '/%year%/%monthnum%/%postname%/',
162         $prefix . '/archives/%post_id%'
163         );
164 ?>
165 <h3><?php _e('Common settings'); ?></h3>
166 <table class="form-table">
167         <tr>
168                 <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
169                 <td><code><?php echo get_option('home'); ?>/?p=123</code></td>
170         </tr>
171         <tr>
172                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[1]); ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Day and name'); ?></label></th>
173                 <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td>
174         </tr>
175         <tr>
176                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[2]); ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Month and name'); ?></label></th>
177                 <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/sample-post/'; ?></code></td>
178         </tr>
179         <tr>
180                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[3]); ?>" class="tog" <?php checked($structures[3], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th>
181                 <td><code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></td>
182         </tr>
183         <tr>
184                 <th>
185                         <label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog"
186                         <?php if ( !in_array($permalink_structure, $structures) ) { ?>
187                         checked="checked"
188                         <?php } ?>
189                          />
190                         <?php _e('Custom Structure'); ?>
191                         </label>
192                 </th>
193                 <td>
194                         <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
195                 </td>
196         </tr>
197 </table>
198
199 <h3><?php _e('Optional'); ?></h3>
200 <?php if ( $is_apache || $iis7_permalinks ) : ?>
201         <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <kbd>topics</kbd> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
202 <?php else : ?>
203         <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
204 <?php endif; ?>
205
206 <table class="form-table">
207         <tr>
208                 <th><label for="category_base"><?php _e('Category base'); ?></label></th>
209                 <td><input name="category_base" id="category_base" type="text" value="<?php echo esc_attr($category_base); ?>" class="regular-text code" /></td>
210         </tr>
211         <tr>
212                 <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
213                 <td><input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
214         </tr>
215         <?php do_settings_fields('permalink', 'optional'); ?>
216 </table>
217
218 <?php do_settings_sections('permalink'); ?>
219
220 <p class="submit">
221         <input type="submit" name="submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
222 </p>
223   </form>
224 <?php if ($iis7_permalinks) :
225         if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) : ?>
226 <p><?php _e('If your <code>web.config</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file.') ?></p>
227 <form action="options-permalink.php" method="post">
228 <?php wp_nonce_field('update-permalink') ?>
229         <p><textarea rows="10" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->iis7_url_rewrite_rules()); ?></textarea></p>
230 </form>
231 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.')  ?></p>
232         <?php endif; ?>
233 <?php else :
234         if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
235 <p><?php _e('If your <code>.htaccess</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p>
236 <form action="options-permalink.php" method="post">
237 <?php wp_nonce_field('update-permalink') ?>
238         <p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->mod_rewrite_rules()); ?></textarea></p>
239 </form>
240         <?php endif; ?>
241 <?php endif; ?>
242
243 </div>
244
245 <?php require('./admin-footer.php'); ?>