2003-10-26 06:25:26 +01:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Permalink settings administration panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-19 05:03:06 +02:00
require_once ( 'admin.php' );
2006-11-18 08:31:29 +01:00
2009-08-01 23:12:17 +02:00
if ( ! current_user_can ( 'manage_options' ) )
wp_die ( __ ( 'You do not have sufficient permissions to manage options for this blog.' ));
2008-02-14 01:39:38 +01:00
$title = __ ( 'Permalink Settings' );
2006-11-18 08:31:29 +01:00
$parent_file = 'options-general.php' ;
2008-08-16 09:27:34 +02:00
/**
* Display JavaScript on the page .
*
* @ package WordPress
* @ subpackage Permalink_Settings_Panel
*/
2005-08-03 03:50:56 +02:00
function add_js () {
?>
< script type = " text/javascript " >
2005-08-03 03:56:02 +02:00
//<![CDATA[
function GetElementsWithClassName ( elementName , className ) {
var allElements = document . getElementsByTagName ( elementName );
var elemColl = new Array ();
for ( i = 0 ; i < allElements . length ; i ++ ) {
if ( allElements [ i ] . className == className ) {
elemColl [ elemColl . length ] = allElements [ i ];
}
}
return elemColl ;
}
function upit () {
var inputColl = GetElementsWithClassName ( 'input' , 'tog' );
var structure = document . getElementById ( 'permalink_structure' );
var inputs = '' ;
for ( i = 0 ; i < inputColl . length ; i ++ ) {
if ( inputColl [ i ] . checked && inputColl [ i ] . value != '' ) {
inputs += inputColl [ i ] . value + ' ' ;
}
}
inputs = inputs . substr ( 0 , inputs . length - 1 );
if ( 'custom' != inputs )
structure . value = inputs ;
}
function blurry () {
if ( ! document . getElementById ) return ;
2005-11-18 10:36:43 +01:00
var structure = document . getElementById ( 'permalink_structure' );
structure . onfocus = function () { document . getElementById ( 'custom_selection' ) . checked = 'checked' ; }
2005-08-03 03:56:02 +02:00
var aInputs = document . getElementsByTagName ( 'input' );
2006-02-12 08:53:23 +01:00
for ( var i = 0 ; i < aInputs . length ; i ++ ) {
2005-08-03 03:56:02 +02:00
aInputs [ i ] . onclick = aInputs [ i ] . onkeyup = upit ;
}
}
window . onload = blurry ;
//]]>
</ script >
2005-08-03 03:50:56 +02:00
< ? php
}
add_filter ( 'admin_head' , 'add_js' );
2004-10-19 05:03:06 +02:00
include ( 'admin-header.php' );
2003-10-26 06:25:26 +01:00
2004-12-23 01:53:56 +01:00
$home_path = get_home_path ();
2009-05-16 04:04:36 +02:00
$iis7_permalinks = iis7_supports_permalinks ();
2004-08-27 07:20:59 +02:00
2006-05-03 00:36:06 +02:00
if ( isset ( $_POST [ 'permalink_structure' ]) || isset ( $_POST [ 'category_base' ]) ) {
check_admin_referer ( 'update-permalink' );
2006-03-31 01:12:54 +02:00
2004-10-18 06:50:08 +02:00
if ( isset ( $_POST [ 'permalink_structure' ]) ) {
2004-10-14 10:09:00 +02:00
$permalink_structure = $_POST [ 'permalink_structure' ];
2004-10-18 06:50:08 +02:00
if ( ! empty ( $permalink_structure ) )
$permalink_structure = preg_replace ( '#/+#' , '/' , '/' . $_POST [ 'permalink_structure' ]);
2010-01-27 00:02:49 +01:00
if ( is_multisite () && ! is_subdomain_install () && $permalink_structure != '' && is_main_site () ) {
2010-01-12 22:11:52 +01:00
$permalink_structure = '/blog' . $permalink_structure ;
}
2004-12-03 03:38:11 +01:00
$wp_rewrite -> set_permalink_structure ( $permalink_structure );
2004-10-18 06:50:08 +02:00
}
2006-02-12 08:53:23 +01:00
2004-10-18 06:50:08 +02:00
if ( isset ( $_POST [ 'category_base' ]) ) {
2004-10-14 10:09:00 +02:00
$category_base = $_POST [ 'category_base' ];
2004-10-18 06:50:08 +02:00
if ( ! empty ( $category_base ) )
$category_base = preg_replace ( '#/+#' , '/' , '/' . $_POST [ 'category_base' ]);
2010-01-27 00:02:49 +01:00
if ( is_multisite () && ! is_subdomain_install () && $category_base != '' && is_main_site () ) {
2010-01-12 22:11:52 +01:00
$category_base = '/blog' . $category_base ;
}
2004-12-03 03:38:11 +01:00
$wp_rewrite -> set_category_base ( $category_base );
2004-10-18 06:50:08 +02:00
}
2007-03-31 11:19:32 +02:00
if ( isset ( $_POST [ 'tag_base' ]) ) {
$tag_base = $_POST [ 'tag_base' ];
if ( ! empty ( $tag_base ) )
$tag_base = preg_replace ( '#/+#' , '/' , '/' . $_POST [ 'tag_base' ]);
2010-01-27 00:02:49 +01:00
if ( is_multisite () && ! is_subdomain_install () && $tag_base != '' && is_main_site () ) {
2010-01-12 22:11:52 +01:00
$tag_base = '/blog' . $tag_base ;
}
2007-03-31 11:19:32 +02:00
$wp_rewrite -> set_tag_base ( $tag_base );
}
2003-10-26 06:25:26 +01:00
}
2006-02-12 08:53:23 +01:00
2006-08-30 23:46:31 +02:00
$permalink_structure = get_option ( 'permalink_structure' );
$category_base = get_option ( 'category_base' );
2007-03-31 11:19:32 +02:00
$tag_base = get_option ( 'tag_base' );
2004-10-14 10:09:00 +02:00
2009-05-16 04:04:36 +02:00
if ( $iis7_permalinks ) {
if ( ( ! file_exists ( $home_path . 'web.config' ) && win_is_writable ( $home_path ) ) || win_is_writable ( $home_path . 'web.config' ) )
$writable = true ;
else
$writable = false ;
} else {
if ( ( ! file_exists ( $home_path . '.htaccess' ) && is_writable ( $home_path ) ) || is_writable ( $home_path . '.htaccess' ) )
$writable = true ;
else
$writable = false ;
}
2003-10-26 06:25:26 +01:00
2009-05-16 04:04:36 +02:00
if ( $wp_rewrite -> using_index_permalinks () )
2004-09-15 17:09:39 +02:00
$usingpi = true ;
else
$usingpi = false ;
2003-10-26 06:25:26 +01:00
2005-12-28 08:05:05 +01:00
$wp_rewrite -> flush_rules ();
2004-09-15 17:09:39 +02:00
2010-03-15 18:32:34 +01:00
if ( isset ( $_POST [ 'submit' ])) : ?>
2009-12-26 10:00:58 +01:00
< div id = " message " class = " updated " >< p >< ? php
2010-03-15 18:32:34 +01:00
if ( ! is_multisite () ) {
if ( $iis7_permalinks ) {
if ( $permalink_structure && ! $usingpi && ! $writable )
_e ( 'You should update your web.config now' );
else if ( $permalink_structure && ! $usingpi && $writable )
_e ( 'Permalink structure updated. Remove write access on web.config file now!' );
else
_e ( 'Permalink structure updated' );
} else {
if ( $permalink_structure && ! $usingpi && ! $writable )
_e ( 'You should update your .htaccess now.' );
else
_e ( 'Permalink structure updated.' );
}
2009-05-16 04:04:36 +02:00
} else {
2010-03-15 18:32:34 +01:00
_e ( 'Permalink structure updated.' );
2009-05-16 04:04:36 +02:00
}
?>
</ p ></ div >
2004-04-28 06:56:29 +02:00
< ? php endif ; ?>
2004-07-28 01:37:45 +02:00
2007-09-04 01:32:58 +02:00
< div class = " wrap " >
2008-11-26 14:51:25 +01:00
< ? php screen_icon (); ?>
2009-05-18 17:11:07 +02:00
< h2 >< ? php echo esc_html ( $title ); ?> </h2>
2008-10-17 22:02:03 +02:00
2007-09-04 01:32:58 +02:00
< form name = " form " action = " options-permalink.php " method = " post " >
2006-09-19 08:11:42 +02:00
< ? php wp_nonce_field ( 'update-permalink' ) ?>
2008-10-14 03:18:52 +02:00
2006-08-30 18:40:17 +02:00
< 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>
2004-05-05 09:34:41 +02:00
2005-08-03 03:50:56 +02:00
< ? php
$prefix = '' ;
2005-11-11 00:25:39 +01:00
2010-02-18 16:40:19 +01:00
if ( ! got_mod_rewrite () && ! $iis7_permalinks )
2005-08-03 03:50:56 +02:00
$prefix = '/index.php' ;
2005-11-11 00:25:39 +01:00
$structures = array (
'' ,
$prefix . '/%year%/%monthnum%/%day%/%postname%/' ,
2008-03-11 08:23:07 +01:00
$prefix . '/%year%/%monthnum%/%postname%/' ,
2005-11-11 00:25:39 +01:00
$prefix . '/archives/%post_id%'
);
2005-08-03 03:50:56 +02:00
?>
2008-02-22 07:43:56 +01:00
< h3 >< ? php _e ( 'Common settings' ); ?> </h3>
2008-02-24 05:33:10 +01:00
< table class = " form-table " >
2008-02-22 07:43:56 +01:00
< tr >
2008-02-22 08:43:06 +01:00
< th >< label >< input name = " selection " type = " radio " value = " " class = " tog " < ? php checked ( '' , $permalink_structure ); ?> /> <?php _e('Default'); ?></label></th>
2008-02-22 18:30:43 +01:00
< td >< code >< ? php echo get_option ( 'home' ); ?> /?p=123</code></td>
2008-02-22 07:43:56 +01:00
</ tr >
< tr >
2009-05-05 21:43:53 +02:00
< 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>
2008-02-22 07:43:56 +01:00
< td >< code >< ? php echo get_option ( 'home' ) . $prefix . '/' . date ( 'Y' ) . '/' . date ( 'm' ) . '/' . date ( 'd' ) . '/sample-post/' ; ?> </code></td>
</ tr >
< tr >
2009-05-05 21:43:53 +02:00
< 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>
2008-03-11 17:41:53 +01:00
< td >< code >< ? php echo get_option ( 'home' ) . $prefix . '/' . date ( 'Y' ) . '/' . date ( 'm' ) . '/sample-post/' ; ?> </code></td>
2008-03-11 08:23:07 +01:00
</ tr >
< tr >
2009-05-05 21:43:53 +02:00
< 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>
2008-02-22 07:43:56 +01:00
< td >< code >< ? php echo get_option ( 'home' ) . $prefix ; ?> /archives/123</code></td>
</ tr >
< tr >
2008-02-22 08:43:06 +01:00
< th >
2008-02-22 07:43:56 +01:00
< label >< input name = " selection " id = " custom_selection " type = " radio " value = " custom " class = " tog "
< ? php if ( ! in_array ( $permalink_structure , $structures ) ) { ?>
checked = " checked "
< ? php } ?>
/>
< ? php _e ( 'Custom Structure' ); ?>
</ label >
2008-02-22 08:43:06 +01:00
</ th >
2008-02-22 07:43:56 +01:00
< td >
2010-01-27 00:38:23 +01:00
< ? php if ( is_multisite () && ! is_subdomain_install () && is_main_site () ) { echo " /blog " ; $permalink_structure = preg_replace ( " |^/?blog| " , " " , $permalink_structure ); } ?>
2009-05-05 21:43:53 +02:00
< input name = " permalink_structure " id = " permalink_structure " type = " text " value = " <?php echo esc_attr( $permalink_structure ); ?> " class = " regular-text code " />
2008-02-22 07:43:56 +01:00
</ td >
</ tr >
</ table >
2004-09-15 17:09:39 +02:00
2005-08-03 03:50:56 +02:00
< h3 >< ? php _e ( 'Optional' ); ?> </h3>
2009-05-16 04:04:36 +02:00
< ? php if ( $is_apache || $iis7_permalinks ) : ?>
2008-11-13 07:29:55 +01:00
< 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>
2005-02-14 01:51:43 +01:00
< ? php else : ?>
2008-07-17 21:41:48 +02:00
< 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>
2005-02-14 01:51:43 +01:00
< ? php endif ; ?>
2008-02-22 07:43:56 +01:00
2008-02-24 05:33:10 +01:00
< table class = " form-table " >
2008-02-22 07:43:56 +01:00
< tr >
2010-01-21 22:37:43 +01:00
< th >< label for = " category_base " >< ? php /* translators: prefix for category permalinks */ _e ( 'Category base' ); ?> </label></th>
2010-01-27 00:02:49 +01:00
< td >< ? php if ( is_multisite () && ! is_subdomain_install () && is_main_site () ) { echo " /blog " ; $category_base = preg_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>
2008-02-22 07:43:56 +01:00
</ tr >
< tr >
2008-05-04 12:37:06 +02:00
< th >< label for = " tag_base " >< ? php _e ( 'Tag base' ); ?> </label></th>
2010-01-27 00:38:23 +01:00
< td >< ? php if ( is_multisite () && ! is_subdomain_install () && is_main_site () ) { echo " /blog " ; $tag_base = preg_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>
2008-02-22 07:43:56 +01:00
</ tr >
2008-09-10 00:31:22 +02:00
< ? php do_settings_fields ( 'permalink' , 'optional' ); ?>
2008-02-22 07:43:56 +01:00
</ table >
2008-09-10 00:31:22 +02:00
< ? php do_settings_sections ( 'permalink' ); ?>
2008-10-14 03:18:52 +02:00
< p class = " submit " >
2009-05-05 21:43:53 +02:00
< input type = " submit " name = " submit " class = " button-primary " value = " <?php esc_attr_e('Save Changes') ?> " />
2008-10-14 03:18:52 +02:00
</ p >
2007-09-04 01:32:58 +02:00
</ form >
2010-02-26 20:59:04 +01:00
< ? php if ( ! is_multisite () ) { ?>
2009-05-16 04:04:36 +02:00
< ? php if ( $iis7_permalinks ) :
2010-01-15 23:11:12 +01:00
if ( isset ( $_POST [ 'submit' ]) && $permalink_structure && ! $usingpi && ! $writable ) :
2009-11-23 19:17:46 +01:00
if ( file_exists ( $home_path . 'web.config' ) ) : ?>
2009-05-16 04:04:36 +02:00
< 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’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>/<configuration>/<system.webServer>/<rewrite>/<rules></code> element in <code>web.config</code> file.' ) ?> </p>
< form action = " options-permalink.php " method = " post " >
< ? php wp_nonce_field ( 'update-permalink' ) ?>
2009-11-23 19:17:46 +01:00
< 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>
2009-05-16 04:04:36 +02:00
</ form >
2009-05-25 01:47:49 +02:00
< 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>
2009-11-23 19:17:46 +01:00
< ? php else : ?>
< 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’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>
< form action = " options-permalink.php " method = " post " >
< ? php wp_nonce_field ( 'update-permalink' ) ?>
< 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>
</ form >
2010-01-15 23:11:12 +01:00
< p >< ? php _e ( 'If you temporarily make your site’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>
2009-11-23 19:17:46 +01:00
< ? php endif ; ?>
2009-05-16 04:04:36 +02:00
< ? php endif ; ?>
2009-05-25 01:47:49 +02:00
< ? php else :
2009-05-16 04:04:36 +02:00
if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
< 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’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>
2004-07-28 01:37:45 +02:00
< form action = " options-permalink.php " method = " post " >
2006-05-03 00:36:06 +02:00
< ? php wp_nonce_field ( 'update-permalink' ) ?>
2009-05-18 17:11:07 +02:00
< 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>
2004-03-08 06:12:11 +01:00
</ form >
2009-05-16 04:04:36 +02:00
< ? php endif ; ?>
2004-12-12 07:31:01 +01:00
< ? php endif ; ?>
2010-01-12 22:11:52 +01:00
< ? php } // multisite ?>
2004-09-15 17:09:39 +02:00
2004-05-14 10:38:34 +02:00
</ div >
2003-10-26 06:25:26 +01:00
2005-12-12 02:48:12 +01:00
< ? php require ( './admin-footer.php' ); ?>