2004-02-25 20:03:49 +01:00
|
|
|
<?php
|
2004-04-14 23:23:52 +02:00
|
|
|
$title = 'Writing Options';
|
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()) {
|
|
|
|
$HTTP_GET_VARS = add_magic_quotes($HTTP_GET_VARS);
|
|
|
|
$HTTP_POST_VARS = add_magic_quotes($HTTP_POST_VARS);
|
|
|
|
$HTTP_COOKIE_VARS = add_magic_quotes($HTTP_COOKIE_VARS);
|
|
|
|
}
|
|
|
|
|
|
|
|
$wpvarstoreset = array('action','standalone', 'option_group_id');
|
|
|
|
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
|
|
|
|
$wpvar = $wpvarstoreset[$i];
|
|
|
|
if (!isset($$wpvar)) {
|
|
|
|
if (empty($HTTP_POST_VARS["$wpvar"])) {
|
|
|
|
if (empty($HTTP_GET_VARS["$wpvar"])) {
|
|
|
|
$$wpvar = '';
|
|
|
|
} else {
|
|
|
|
$$wpvar = $HTTP_GET_VARS["$wpvar"];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$$wpvar = $HTTP_POST_VARS["$wpvar"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$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-15 09:53:45 +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">
|
|
|
|
<th scope="row"> 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')); ?> />
|
|
|
|
Simple controls</label>
|
|
|
|
<br />
|
|
|
|
<label>
|
|
|
|
<input name="advanced_edit" type="radio" value="1" <?php checked('1', get_settings('advanced_edit')); ?> />
|
|
|
|
Advanced controls</label>
|
|
|
|
<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">
|
|
|
|
<th scope="row">Formatting:</th>
|
|
|
|
<td> <label for="label">
|
|
|
|
<input name="use_smilies" type="checkbox" id="label" value="1" <?php checked('1', get_settings('use_smilies')); ?> />
|
|
|
|
Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics</label>
|
|
|
|
on display <br /> <label for="label2">
|
|
|
|
<input name="use_balanceTags" type="checkbox" id="label2" value="1" <?php checked('1', get_settings('use_balanceTags')); ?> />
|
|
|
|
WordPress should correct invalidly nested XHTML automatically</label></td>
|
|
|
|
</tr>
|
2004-02-25 20:03:49 +01:00
|
|
|
</table>
|
2004-04-14 23:23:52 +02:00
|
|
|
<fieldset class="options">
|
2004-02-27 06:48:00 +01:00
|
|
|
<legend>Update Services</legend>
|
2004-04-14 23:23:52 +02:00
|
|
|
<p>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="http://wiki.wordpress.org/index.php/UpdateServices">Update Services</a> on the wiki. Seperate multiple URIs by line breaks.</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">
|
|
|
|
<legend>Writing by Email</legend>
|
|
|
|
<p>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><?php echo substr(md5(uniqid(microtime())),0,5); ?></code>, <code><?php echo substr(md5(uniqid(microtime())),0,5); ?></code>, <code><?php echo substr(md5(uniqid(microtime())),0,5); ?></code>.</p>
|
|
|
|
|
|
|
|
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row"> Mail server:</th>
|
|
|
|
<td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php echo get_settings('mailserver_url'); ?>" size="40" />
|
|
|
|
<label for="port">Port:</label>
|
|
|
|
<input name="mailserver_port" type="text" id="mailserver_port" value="<?php echo get_settings('mailserver_port'); ?>" size="6" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
|
|
<th width="33%" scope="row"> Login name:</th>
|
|
|
|
<td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php echo get_settings('mailserver_login'); ?>" size="40" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row">Password:</th>
|
|
|
|
<td>
|
|
|
|
<input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php echo get_settings('mailserver_pass'); ?>" size="40" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
|
|
<th scope="row">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;">
|
|
|
|
<input type="submit" name="Submit" value="Update Options" />
|
|
|
|
</p>
|
2004-02-25 20:03:49 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2004-02-27 06:48:00 +01:00
|
|
|
<?php include("admin-footer.php") ?>
|