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
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 ();
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' ]);
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' ]);
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' ]);
$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
2004-09-15 17:09:39 +02:00
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
2004-12-03 03:38:11 +01: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 ();
2003-10-26 06:25:26 +01:00
?>
2004-09-15 17:09:39 +02:00
2004-05-09 07:47:02 +02:00
< ? php if ( isset ( $_POST [ 'submit' ])) : ?>
2005-08-08 03:13:22 +02:00
< div id = " message " class = " updated fade " >< p >< ? php
2007-08-08 06:10:20 +02:00
if ( $permalink_structure && ! $usingpi && ! $writable )
_e ( 'You should update your .htaccess now.' );
2005-02-14 04:22:25 +01:00
else
2007-08-08 06:10:20 +02:00
_e ( 'Permalink structure updated.' );
2005-02-14 04:22:25 +01: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-10-17 22:06:22 +02:00
< h2 >< ? php echo wp_specialchars ( $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
if ( ! got_mod_rewrite () )
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 >
2008-03-11 08:23:07 +01:00
< th >< label >< input name = " selection " type = " radio " value = " <?php echo $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 >
2008-03-11 08:23:07 +01:00
< th >< label >< input name = " selection " type = " radio " value = " <?php echo $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 >
< th >< label >< input name = " selection " type = " radio " value = " <?php echo $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 >
< input name = " permalink_structure " id = " permalink_structure " type = " text " class = " code " style = " width: 60%; " value = " <?php echo attribute_escape( $permalink_structure ); ?> " size = " 50 " />
</ td >
</ tr >
</ table >
2004-09-15 17:09:39 +02:00
2005-08-03 03:50:56 +02:00
< h3 >< ? php _e ( 'Optional' ); ?> </h3>
2005-02-14 01:51:43 +01:00
< ? php if ( $is_apache ) : ?>
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/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 >
2008-05-04 12:37:06 +02:00
< th >< label for = " category_base " >< ? php _e ( 'Category base' ); ?> </label></th>
2008-02-22 07:43:56 +01:00
< td >< input name = " category_base " id = " category_base " type = " text " class = " code " value = " <?php echo attribute_escape( $category_base ); ?> " size = " 30 " /></ td >
</ tr >
< tr >
2008-05-04 12:37:06 +02:00
< th >< label for = " tag_base " >< ? php _e ( 'Tag base' ); ?> </label></th>
2008-02-22 07:43:56 +01:00
< td >< input name = " tag_base " id = " tag_base " type = " text " class = " code " value = " <?php echo attribute_escape( $tag_base ); ?> " size = " 30 " /></ td >
</ 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 " >
2008-10-27 21:41:05 +01:00
< input type = " submit " name = " submit " class = " button-primary " value = " <?php _e('Save Changes') ?> " />
2008-10-14 03:18:52 +02:00
</ p >
2007-09-04 01:32:58 +02:00
</ form >
2004-09-15 17:09:39 +02:00
< ? php if ( $permalink_structure && ! $usingpi && ! $writable ) : ?>
2008-03-07 15:29:05 +01:00
< 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' ) ?>
2007-04-27 02:47:01 +02:00
< p >< textarea rows = " 5 " style = " width: 98%; " name = " rules " id = " rules " >< ? php echo wp_specialchars ( $wp_rewrite -> mod_rewrite_rules ()); ?> </textarea></p>
2004-03-08 06:12:11 +01:00
</ form >
2004-12-12 07:31:01 +01:00
< ? php endif ; ?>
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' ); ?>