2004-02-25 20:03:49 +01:00
< ? php
2004-04-21 04:28:22 +02:00
require_once ( '../wp-includes/wp-l10n.php' );
$title = __ ( 'Writing Options' );
2004-04-19 10:09:27 +02:00
$parent_file = 'options-general.php' ;
2004-02-25 20:03:49 +01:00
function add_magic_quotes ( $array ) {
foreach ( $array as $k => $v ) {
if ( is_array ( $v )) {
$array [ $k ] = add_magic_quotes ( $v );
} else {
$array [ $k ] = addslashes ( $v );
}
}
return $array ;
}
if ( ! get_magic_quotes_gpc ()) {
2004-04-21 00:56:47 +02:00
$_GET = add_magic_quotes ( $_GET );
$_POST = add_magic_quotes ( $_POST );
$_COOKIE = add_magic_quotes ( $_COOKIE );
2004-02-25 20:03:49 +01:00
}
$wpvarstoreset = array ( 'action' , 'standalone' , 'option_group_id' );
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
2004-04-21 00:56:47 +02:00
if ( empty ( $_POST [ " $wpvar " ])) {
if ( empty ( $_GET [ " $wpvar " ])) {
2004-02-25 20:03:49 +01:00
$$wpvar = '' ;
} else {
2004-04-21 00:56:47 +02:00
$$wpvar = $_GET [ " $wpvar " ];
2004-02-25 20:03:49 +01:00
}
} else {
2004-04-21 00:56:47 +02:00
$$wpvar = $_POST [ " $wpvar " ];
2004-02-25 20:03:49 +01:00
}
}
}
$standalone = 0 ;
include_once ( 'admin-header.php' );
2004-04-11 10:15:10 +02:00
include ( 'options-head.php' );
2004-02-25 20:03:49 +01:00
?>
2004-04-11 10:15:10 +02:00
2004-02-25 20:03:49 +01:00
< div class = " wrap " >
< h2 > Writing Options </ h2 >
< form name = " form1 " method = " post " action = " options.php " >
2004-02-27 06:48:00 +01:00
< input type = " hidden " name = " action " value = " update " />
2004-04-18 18:37:13 +02:00
< input type = " hidden " name = " page_options " value = " 'default_post_edit_rows','blog_charset','use_smilies','use_balanceTags','advanced_edit','ping_sites','mailserver_url', 'mailserver_port','mailserver_login','mailserver_pass','default_category' " />
2004-02-25 20:03:49 +01:00
< table width = " 100% " cellspacing = " 2 " cellpadding = " 5 " class = " editform " >
2004-02-29 09:30:56 +01:00
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th scope = " row " > < ? php _e ( 'When starting a post, show:' ) ?> </th>
2004-04-11 10:15:10 +02:00
< td >< ? php get_settings ( 'advanced_edit' ) ?> <label>
2004-02-29 09:30:56 +01:00
< input name = " advanced_edit " type = " radio " value = " 0 " < ? php checked ( '0' , get_settings ( 'advanced_edit' )); ?> />
2004-04-21 04:28:22 +02:00
< ? php _e ( 'Simple controls' ) ?> </label>
2004-02-29 09:30:56 +01:00
< br />
< label >
< input name = " advanced_edit " type = " radio " value = " 1 " < ? php checked ( '1' , get_settings ( 'advanced_edit' )); ?> />
2004-04-21 04:28:22 +02:00
< ? php _e ( 'Advanced controls' ) ?> </label>
2004-02-29 09:30:56 +01:00
< label for = " advanced_edit " ></ label ></ td >
</ tr >
2004-02-25 20:03:49 +01:00
< tr valign = " top " >
2004-02-26 15:37:15 +01:00
< th width = " 33% " scope = " row " > Size of the writing box :</ th >
< td >< input name = " default_post_edit_rows " type = " text " id = " default_post_edit_rows " value = " <?php echo get_settings('default_post_edit_rows'); ?> " size = " 2 " style = " width: 1.5em; " />
2004-02-27 06:48:00 +01:00
lines </ td >
</ tr >
2004-02-29 09:30:56 +01:00
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th scope = " row " >< ? php _e ( 'Formatting:' ) ?> </th>
2004-02-29 09:30:56 +01:00
< td > < label for = " label " >
< input name = " use_smilies " type = " checkbox " id = " label " value = " 1 " < ? php checked ( '1' , get_settings ( 'use_smilies' )); ?> />
2004-04-21 04:28:22 +02:00
< ? php _e ( 'Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display' ) ?> </label> <br /> <label for="label2">
2004-02-29 09:30:56 +01:00
< input name = " use_balanceTags " type = " checkbox " id = " label2 " value = " 1 " < ? php checked ( '1' , get_settings ( 'use_balanceTags' )); ?> />
2004-04-21 04:28:22 +02:00
< ? php _e ( 'WordPress should correct invalidly nested XHTML automatically' ) ?> </label></td>
2004-02-29 09:30:56 +01:00
</ tr >
2004-02-25 20:03:49 +01:00
</ table >
2004-04-14 23:23:52 +02:00
< fieldset class = " options " >
2004-04-21 04:28:22 +02:00
< legend >< ? php _e ( 'Update Services' ) ?> </legend>
2004-04-21 23:38:38 +02:00
< p >< ? php printf ( __ ( 'Enter the sites that you would like to notify when you publish a new post. For a list of some recommended sites to ping please see <a href="%s">Update Services</a> on the wiki. Separate multiple URIs by line breaks.' ), 'http://wiki.wordpress.org/index.php/UpdateServices' ) ?> </p>
2004-02-27 06:48:00 +01:00
< textarea name = " ping_sites " id = " ping_sites " style = " width: 98%; " >< ? php echo get_settings ( 'ping_sites' ); ?> </textarea>
</ fieldset >
2004-04-14 23:23:52 +02:00
< fieldset class = " options " >
2004-04-21 04:28:22 +02:00
< legend >< ? php _e ( 'Writing by Email' ) ?> </legend>
< p >< ? php printf ( __ ( 'To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.' ), substr ( md5 ( uniqid ( microtime ())), 0 , 5 ), substr ( md5 ( uniqid ( microtime ())), 0 , 5 ), substr ( md5 ( uniqid ( microtime ())), 0 , 5 )) ?> </p>
2004-04-14 23:23:52 +02:00
< table width = " 100% " cellspacing = " 2 " cellpadding = " 5 " class = " editform " >
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th scope = " row " >< ? php _e ( 'Mail server:' ) ?> </th>
2004-04-14 23:23:52 +02:00
< td >< input name = " mailserver_url " type = " text " id = " mailserver_url " value = " <?php echo get_settings('mailserver_url'); ?> " size = " 40 " />
2004-04-21 04:28:22 +02:00
< label for = " port " >< ? php _e ( 'Port:' ) ?> </label>
2004-04-14 23:23:52 +02:00
< input name = " mailserver_port " type = " text " id = " mailserver_port " value = " <?php echo get_settings('mailserver_port'); ?> " size = " 6 " />
</ td >
</ tr >
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th width = " 33% " scope = " row " >< ? php _e ( 'Login name:' ) ?> </th>
2004-04-14 23:23:52 +02:00
< td >< input name = " mailserver_login " type = " text " id = " mailserver_login " value = " <?php echo get_settings('mailserver_login'); ?> " size = " 40 " /></ td >
</ tr >
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th scope = " row " >< ? php _e ( 'Password:' ) ?> </th>
2004-04-14 23:23:52 +02:00
< td >
< input name = " mailserver_pass " type = " text " id = " mailserver_pass " value = " <?php echo get_settings('mailserver_pass'); ?> " size = " 40 " />
</ td >
</ tr >
< tr valign = " top " >
2004-04-21 04:28:22 +02:00
< th scope = " row " >< ? php _e ( 'Usual category:' ) ?> </th>
2004-04-15 09:53:45 +02:00
< td >< select name = " default_category " id = " default_category " >
< ? php
$categories = $wpdb -> get_results ( " SELECT * FROM $tablecategories ORDER BY cat_name " );
foreach ( $categories as $category ) :
if ( $category -> cat_ID == get_settings ( 'default_category' )) $selected = " selected='selected' " ;
else $selected = '' ;
echo " \n \t <option value=' $category->cat_ID ' $selected > $category->cat_name </option> " ;
endforeach ;
?>
</ select ></ td >
2004-04-14 23:23:52 +02:00
</ tr >
</ table >
</ fieldset >
2004-02-27 06:48:00 +01:00
< p style = " text-align: right; " >
2004-04-21 04:28:22 +02:00
< input type = " submit " name = " Submit " value = " <?php _e('Update Options') ?> " />
2004-02-27 06:48:00 +01:00
</ p >
2004-02-25 20:03:49 +01:00
</ form >
</ div >
2004-02-27 06:48:00 +01:00
< ? php include ( " admin-footer.php " ) ?>