PageRenderTime 778ms CodeModel.GetById 125ms RepoModel.GetById 5ms app.codeStats 3ms

/Websites/webkit.org/blog/wp-admin/options-permalink.php

https://bitbucket.org/zenoalbisser/webkit
PHP | 248 lines | 200 code | 33 blank | 15 comment | 57 complexity | 6b7bd80a7f9c19daeb4f0d4d31f76eec MD5 | raw file
  1. <?php
  2. /**
  3. * Permalink settings administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once('admin.php');
  10. if ( ! current_user_can('manage_options') )
  11. wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
  12. $title = __('Permalink Settings');
  13. $parent_file = 'options-general.php';
  14. /**
  15. * Display JavaScript on the page.
  16. *
  17. * @package WordPress
  18. * @subpackage Permalink_Settings_Panel
  19. */
  20. function add_js() {
  21. ?>
  22. <script type="text/javascript">
  23. //<![CDATA[
  24. function GetElementsWithClassName(elementName, className) {
  25. var allElements = document.getElementsByTagName(elementName);
  26. var elemColl = new Array();
  27. for (i = 0; i < allElements.length; i++) {
  28. if (allElements[i].className == className) {
  29. elemColl[elemColl.length] = allElements[i];
  30. }
  31. }
  32. return elemColl;
  33. }
  34. function upit() {
  35. var inputColl = GetElementsWithClassName('input', 'tog');
  36. var structure = document.getElementById('permalink_structure');
  37. var inputs = '';
  38. for (i = 0; i < inputColl.length; i++) {
  39. if ( inputColl[i].checked && inputColl[i].value != '') {
  40. inputs += inputColl[i].value + ' ';
  41. }
  42. }
  43. inputs = inputs.substr(0,inputs.length - 1);
  44. if ( 'custom' != inputs )
  45. structure.value = inputs;
  46. }
  47. function blurry() {
  48. if (!document.getElementById) return;
  49. var structure = document.getElementById('permalink_structure');
  50. structure.onfocus = function () { document.getElementById('custom_selection').checked = 'checked'; }
  51. var aInputs = document.getElementsByTagName('input');
  52. for (var i = 0; i < aInputs.length; i++) {
  53. aInputs[i].onclick = aInputs[i].onkeyup = upit;
  54. }
  55. }
  56. window.onload = blurry;
  57. //]]>
  58. </script>
  59. <?php
  60. }
  61. add_filter('admin_head', 'add_js');
  62. include('admin-header.php');
  63. $home_path = get_home_path();
  64. $iis7_permalinks = iis7_supports_permalinks();
  65. if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
  66. check_admin_referer('update-permalink');
  67. if ( isset($_POST['permalink_structure']) ) {
  68. $permalink_structure = $_POST['permalink_structure'];
  69. if (! empty($permalink_structure) )
  70. $permalink_structure = preg_replace('#/+#', '/', '/' . $_POST['permalink_structure']);
  71. $wp_rewrite->set_permalink_structure($permalink_structure);
  72. }
  73. if ( isset($_POST['category_base']) ) {
  74. $category_base = $_POST['category_base'];
  75. if (! empty($category_base) )
  76. $category_base = preg_replace('#/+#', '/', '/' . $_POST['category_base']);
  77. $wp_rewrite->set_category_base($category_base);
  78. }
  79. if ( isset($_POST['tag_base']) ) {
  80. $tag_base = $_POST['tag_base'];
  81. if (! empty($tag_base) )
  82. $tag_base = preg_replace('#/+#', '/', '/' . $_POST['tag_base']);
  83. $wp_rewrite->set_tag_base($tag_base);
  84. }
  85. }
  86. $permalink_structure = get_option('permalink_structure');
  87. $category_base = get_option('category_base');
  88. $tag_base = get_option( 'tag_base' );
  89. if ( $iis7_permalinks ) {
  90. if ( ( ! file_exists($home_path . 'web.config') && win_is_writable($home_path) ) || win_is_writable($home_path . 'web.config') )
  91. $writable = true;
  92. else
  93. $writable = false;
  94. } else {
  95. if ( ( ! file_exists($home_path . '.htaccess') && is_writable($home_path) ) || is_writable($home_path . '.htaccess') )
  96. $writable = true;
  97. else
  98. $writable = false;
  99. }
  100. if ( $wp_rewrite->using_index_permalinks() )
  101. $usingpi = true;
  102. else
  103. $usingpi = false;
  104. $wp_rewrite->flush_rules();
  105. ?>
  106. <?php if (isset($_POST['submit'])) : ?>
  107. <div id="message" class="updated fade"><p><?php
  108. if ( $iis7_permalinks ) {
  109. if ( $permalink_structure && ! $usingpi && ! $writable )
  110. _e('You should update your web.config now');
  111. else if ( $permalink_structure && ! $usingpi && $writable)
  112. _e('Permalink structure updated. Remove write access on web.config file now!');
  113. else
  114. _e('Permalink structure updated');
  115. } else {
  116. if ( $permalink_structure && ! $usingpi && ! $writable )
  117. _e('You should update your .htaccess now.');
  118. else
  119. _e('Permalink structure updated.');
  120. }
  121. ?>
  122. </p></div>
  123. <?php endif; ?>
  124. <div class="wrap">
  125. <?php screen_icon(); ?>
  126. <h2><?php echo esc_html( $title ); ?></h2>
  127. <form name="form" action="options-permalink.php" method="post">
  128. <?php wp_nonce_field('update-permalink') ?>
  129. <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>
  130. <?php
  131. $prefix = '';
  132. if ( ! got_mod_rewrite() && ! $iis7_permalinks )
  133. $prefix = '/index.php';
  134. $structures = array(
  135. '',
  136. $prefix . '/%year%/%monthnum%/%day%/%postname%/',
  137. $prefix . '/%year%/%monthnum%/%postname%/',
  138. $prefix . '/archives/%post_id%'
  139. );
  140. ?>
  141. <h3><?php _e('Common settings'); ?></h3>
  142. <table class="form-table">
  143. <tr>
  144. <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
  145. <td><code><?php echo get_option('home'); ?>/?p=123</code></td>
  146. </tr>
  147. <tr>
  148. <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>
  149. <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td>
  150. </tr>
  151. <tr>
  152. <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>
  153. <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/sample-post/'; ?></code></td>
  154. </tr>
  155. <tr>
  156. <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>
  157. <td><code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></td>
  158. </tr>
  159. <tr>
  160. <th>
  161. <label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog"
  162. <?php if ( !in_array($permalink_structure, $structures) ) { ?>
  163. checked="checked"
  164. <?php } ?>
  165. />
  166. <?php _e('Custom Structure'); ?>
  167. </label>
  168. </th>
  169. <td>
  170. <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
  171. </td>
  172. </tr>
  173. </table>
  174. <h3><?php _e('Optional'); ?></h3>
  175. <?php if ( $is_apache || $iis7_permalinks ) : ?>
  176. <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>
  177. <?php else : ?>
  178. <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>
  179. <?php endif; ?>
  180. <table class="form-table">
  181. <tr>
  182. <th><label for="category_base"><?php _e('Category base'); ?></label></th>
  183. <td><input name="category_base" id="category_base" type="text" value="<?php echo esc_attr($category_base); ?>" class="regular-text code" /></td>
  184. </tr>
  185. <tr>
  186. <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
  187. <td><input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
  188. </tr>
  189. <?php do_settings_fields('permalink', 'optional'); ?>
  190. </table>
  191. <?php do_settings_sections('permalink'); ?>
  192. <p class="submit">
  193. <input type="submit" name="submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
  194. </p>
  195. </form>
  196. <?php if ($iis7_permalinks) :
  197. if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) : ?>
  198. <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>
  199. <form action="options-permalink.php" method="post">
  200. <?php wp_nonce_field('update-permalink') ?>
  201. <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>
  202. </form>
  203. <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>
  204. <?php endif; ?>
  205. <?php else :
  206. if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
  207. <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>
  208. <form action="options-permalink.php" method="post">
  209. <?php wp_nonce_field('update-permalink') ?>
  210. <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>
  211. </form>
  212. <?php endif; ?>
  213. <?php endif; ?>
  214. </div>
  215. <?php require('./admin-footer.php'); ?>