[ Root ] [ Search ] [ Index ]

PHP Cross Reference of WordPress MU 2.9.2

Provided by Yoast

title

Body

[close]

/wp-admin/ -> options-permalink.php (source)

   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  if ( ! current_user_can('manage_options') )
  13      wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
  14  
  15  $title = __('Permalink Settings');
  16  $parent_file = 'options-general.php';
  17  
  18  /**
  19   * Display JavaScript on the page.
  20   *
  21   * @package WordPress
  22   * @subpackage Permalink_Settings_Panel
  23   */
  24  function add_js() {
  25  ?>
  26  <script type="text/javascript">
  27  //<![CDATA[
  28  function GetElementsWithClassName(elementName, className) {
  29  var allElements = document.getElementsByTagName(elementName);
  30  var elemColl = new Array();
  31  for (i = 0; i < allElements.length; i++) {
  32  if (allElements[i].className == className) {
  33  elemColl[elemColl.length] = allElements[i];
  34  }
  35  }
  36  return elemColl;
  37  }
  38  
  39  function upit() {
  40  var inputColl = GetElementsWithClassName('input', 'tog');
  41  var structure = document.getElementById('permalink_structure');
  42  var inputs = '';
  43  for (i = 0; i < inputColl.length; i++) {
  44  if ( inputColl[i].checked && inputColl[i].value != '') {
  45  inputs += inputColl[i].value + ' ';
  46  }
  47  }
  48  inputs = inputs.substr(0,inputs.length - 1);
  49  if ( 'custom' != inputs )
  50  structure.value = inputs;
  51  }
  52  
  53  function blurry() {
  54  if (!document.getElementById) return;
  55  
  56  var structure = document.getElementById('permalink_structure');
  57  structure.onfocus = function () { document.getElementById('custom_selection').checked = 'checked'; }
  58  
  59  var aInputs = document.getElementsByTagName('input');
  60  
  61  for (var i = 0; i < aInputs.length; i++) {
  62  aInputs[i].onclick = aInputs[i].onkeyup = upit;
  63  }
  64  }
  65  
  66  window.onload = blurry;
  67  //]]>
  68  </script>
  69  <?php
  70  }
  71  add_filter('admin_head', 'add_js');
  72  
  73  include ('admin-header.php');
  74  
  75  $home_path = get_home_path();
  76  $iis7_permalinks = iis7_supports_permalinks();
  77  
  78  if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
  79      check_admin_referer('update-permalink');
  80  
  81      if ( isset($_POST['permalink_structure']) ) {
  82          $permalink_structure = $_POST['permalink_structure'];
  83          if (! empty($permalink_structure) )
  84              $permalink_structure = preg_replace('#/+#', '/', '/' . $_POST['permalink_structure']);
  85          if( constant( 'VHOST' ) == 'no' && $permalink_structure != '' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) {
  86              $permalink_structure = '/blog' . $permalink_structure;
  87          }
  88          $wp_rewrite->set_permalink_structure($permalink_structure);
  89      }
  90  
  91      if ( isset($_POST['category_base']) ) {
  92          $category_base = $_POST['category_base'];
  93          if (! empty($category_base) )
  94              $category_base = preg_replace('#/+#', '/', '/' . $_POST['category_base']);
  95          if( constant( 'VHOST' ) == 'no' && $category_base != '' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) {
  96              $category_base = '/blog' . $category_base;
  97          }
  98          $wp_rewrite->set_category_base($category_base);
  99      }
 100  
 101      if ( isset($_POST['tag_base']) ) {
 102          $tag_base = $_POST['tag_base'];
 103          if (! empty($tag_base) )
 104              $tag_base = preg_replace('#/+#', '/', '/' . $_POST['tag_base']);
 105          if( constant( 'VHOST' ) == 'no' && $tag_base != '' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) {
 106              $tag_base = '/blog' . $tag_base;
 107          }
 108          $wp_rewrite->set_tag_base($tag_base);
 109      }
 110  }
 111  
 112  $permalink_structure = get_option('permalink_structure');
 113  $category_base = get_option('category_base');
 114  $tag_base = get_option( 'tag_base' );
 115  
 116  if ( $iis7_permalinks ) {
 117      if ( ( ! file_exists($home_path . 'web.config') && win_is_writable($home_path) ) || win_is_writable($home_path . 'web.config') )
 118          $writable = true;
 119      else
 120          $writable = false;
 121  } else {
 122      if ( ( ! file_exists($home_path . '.htaccess') && is_writable($home_path) ) || is_writable($home_path . '.htaccess') )
 123          $writable = true;
 124      else
 125          $writable = false;
 126  }
 127  
 128  if ( $wp_rewrite->using_index_permalinks() )
 129      $usingpi = true;
 130  else
 131      $usingpi = false;
 132  
 133  $wp_rewrite->flush_rules();
 134  ?>
 135  
 136  <?php if (isset($_POST['submit'])) : ?>
 137  <div id="message" class="updated fade"><p><?php
 138  if ( $iis7_permalinks ) {
 139      if ( $permalink_structure && ! $usingpi && ! $writable )
 140          _e('You should update your web.config now');
 141      else if ( $permalink_structure && ! $usingpi && $writable)
 142          _e('Permalink structure updated. Remove write access on web.config file now!');
 143      else
 144          _e('Permalink structure updated');
 145  } else {
 146      if ( $permalink_structure && ! $usingpi && ! $writable )
 147          _e('You should update your .htaccess now.');
 148      else
 149          _e('Permalink structure updated.');
 150  }
 151  ?>
 152  </p></div>
 153  <?php endif; ?>
 154  
 155  <div class="wrap">
 156  <?php screen_icon(); ?>
 157  <h2><?php echo esc_html( $title ); ?></h2>
 158  
 159  <form name="form" action="options-permalink.php" method="post">
 160  <?php wp_nonce_field('update-permalink') ?>
 161  
 162    <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>
 163  
 164  <?php
 165  $prefix = '';
 166  
 167  if ( ! got_mod_rewrite() && ! $iis7_permalinks )
 168      $prefix = '/index.php';
 169  
 170  $structures = array(
 171      '',
 172      $prefix . '/%year%/%monthnum%/%day%/%postname%/',
 173      $prefix . '/%year%/%monthnum%/%postname%/',
 174      $prefix . '/archives/%post_id%'
 175      );
 176  ?>
 177  <h3><?php _e('Common settings'); ?></h3>
 178  <table class="form-table">
 179      <tr>
 180          <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
 181          <td><code><?php echo get_option('home'); ?>/?p=123</code></td>
 182      </tr>
 183      <tr>
 184          <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>
 185          <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td>
 186      </tr>
 187      <tr>
 188          <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>
 189          <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/sample-post/'; ?></code></td>
 190      </tr>
 191      <tr>
 192          <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>
 193          <td><code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></td>
 194      </tr>
 195      <tr>
 196          <th>
 197              <label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog"
 198              <?php if ( !in_array($permalink_structure, $structures) ) { ?>
 199              checked="checked"
 200              <?php } ?>
 201               />
 202              <?php _e('Custom Structure'); ?>
 203              </label>
 204          </th>
 205          <td>
 206              <?php if( constant( 'VHOST' ) == 'no' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) { echo "/blog"; $permalink_structure = str_replace( "/blog", "", $permalink_structure ); }?>
 207              <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
 208          </td>
 209      </tr>
 210  </table>
 211  
 212  <h3><?php _e('Optional'); ?></h3>
 213  <?php if ( $is_apache || $iis7_permalinks ) : ?>
 214      <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>
 215  <?php else : ?>
 216      <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>
 217  <?php endif; ?>
 218  
 219  <table class="form-table">
 220      <tr>
 221          <th><label for="category_base"><?php _e('Category base'); ?></label></th>
 222          <td><?php if( constant( 'VHOST' ) == 'no' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) { echo "/blog"; $category_base = str_replace( "/blog", "", $category_base ); }?> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /></td>
 223      </tr>
 224      <tr>
 225          <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
 226          <td><?php if( constant( 'VHOST' ) == 'no' && $current_site->domain.$current_site->path == $current_blog->domain.$current_blog->path ) { echo "/blog"; $tag_base = str_replace( "/blog", "", $tag_base ); }?> <input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
 227      </tr>
 228      <?php do_settings_fields('permalink', 'optional'); ?>
 229  </table>
 230  
 231  <?php do_settings_sections('permalink'); ?>
 232  
 233  <p class="submit">
 234      <input type="submit" name="submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
 235  </p>
 236    </form>
 237  <?php if ( is_site_admin() ) : ?>
 238  <?php if ($iis7_permalinks) :
 239      if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) : 
 240          if ( file_exists($home_path . 'web.config') ) : ?>
 241  <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>
 242  <form action="options-permalink.php" method="post">
 243  <?php wp_nonce_field('update-permalink') ?>
 244      <p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->iis7_url_rewrite_rules()); ?></textarea></p>
 245  </form>
 246  <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>
 247          <?php else : ?>
 248  <p><?php _e('If the root directory of your site 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. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p>
 249  <form action="options-permalink.php" method="post">
 250  <?php wp_nonce_field('update-permalink') ?>
 251      <p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_html($wp_rewrite->iis7_url_rewrite_rules(true)); ?></textarea></p>
 252  </form>
 253  <p><?php _e('If you temporarily make your site&#8217;s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.')  ?></p>            
 254          <?php endif; ?>
 255      <?php endif; ?>
 256  <?php else :
 257      if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
 258  <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>
 259  <form action="options-permalink.php" method="post">
 260  <?php wp_nonce_field('update-permalink') ?>
 261      <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>
 262  </form>
 263      <?php endif; ?>
 264  <?php endif; ?>
 265  <?php endif; ?>
 266  
 267  </div>
 268  
 269  <?php require ('./admin-footer.php'); ?>


Generated: Mon May 3 12:25:32 2010 Cross-referenced by PHPXref 0.7