<?php
$title = 'General Options';

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()) {
	$_GET    = add_magic_quotes($_GET);
	$_POST   = add_magic_quotes($_POST);
	$_COOKIE = add_magic_quotes($_COOKIE);
}

$wpvarstoreset = array('action','standalone', 'option_group_id');
for ($i=0; $i<count($wpvarstoreset); $i += 1) {
	$wpvar = $wpvarstoreset[$i];
	if (!isset($$wpvar)) {
		if (empty($_POST["$wpvar"])) {
			if (empty($_GET["$wpvar"])) {
				$$wpvar = '';
			} else {
				$$wpvar = $_GET["$wpvar"];
			}
		} else {
			$$wpvar = $_POST["$wpvar"];
		}
	}
}


$standalone = 0;
include_once('admin-header.php');
include('options-head.php');
?>
 
<div class="wrap"> 
  <h2><?php echo _LANG_WAO_GENERAL_OPTIONS; ?></h2> 
  <form name="form1" method="post" action="options.php"> 
    <input type="hidden" name="action" value="update" /> 
	<input type="hidden" name="action" value="update" /> <input type="hidden" name="page_options" value="'blogname','blogdescription','siteurl','admin_email','users_can_register','new_users_can_blog','gmt_offset','date_format','time_format','home'" /> 
    <table width="100%" cellspacing="3" cellpadding="2" class="editform"> 
      <tr valign="top"> 
        <th id="leftmark" width="33%" scope="row"><?php echo _LANG_WAO_GENERAL_WPTITLE; ?></th> 
        <td><input name="blogname" type="text" id="blogname" value="<?php echo get_settings('blogname'); ?>" size="40" /></td> 
      </tr> 
      <tr valign="top"> 
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_TAGLINE; ?></th> 
        <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php echo get_settings('blogdescription'); ?>" size="45" />
        <br />
<?php echo _LANG_WAO_GENERAL_EXPLIAIN; ?></td> 
      </tr> 
      <tr valign="top"> 
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_WPURI; ?></th> 
        <td><input name="siteurl" type="text" id="siteurl" value="<?php echo get_settings('siteurl'); ?>" size="40" class="code" /></td> 
      </tr> 
      <tr valign="top">
      	<th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_BGURI; ?></th>
      	<td><input name="home" type="text" id="home" value="<?php echo get_settings('home'); ?>" size="40" class="code" /><br /><?php echo _LANG_WAO_GENERAL_HOMEPAGE; ?></td>
      	</tr>
      <tr valign="top"> 
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_MAIL; ?></th> 
        <td><input name="admin_email" type="text" id="admin_email" value="<?php echo get_settings('admin_email'); ?>" size="40" class="code" />
        <br />
<?php echo _LANG_WAO_GENERAL_ADMIN; ?></td> 
      </tr>
      <tr valign="top"> 
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_MEMBER; ?></th> 
        <td> <label for="users_can_register"> 
          <input name="users_can_register" type="checkbox" id="users_can_register" value="1" <?php checked('1', get_settings('users_can_register')); ?> /> 
          <?php echo _LANG_WAO_GENERAL_REGISTER; ?></label> 
          <br /> 
          <label for="new_users_can_blog"> 
          <input name="new_users_can_blog" type="checkbox" id="new_users_can_blog" value="1" <?php checked('1', get_settings('new_users_can_blog')); ?> /> 
          <?php echo _LANG_WAO_GENERAL_ARTICLES; ?></label></td> 
      </tr> 
    </table> 
    <fieldset class="options"> 
    <legend><?php echo _LANG_WAO_GENERAL_TIME; ?></legend> 
	    <table width="100%" cellspacing="3" cellpadding="2" class="editform"> 
      <tr> 
          <th id="leftmark" scope="row" width="33%"><?php echo _LANG_WAO_GENERAL_GMT; ?></th> 
        <td><code><?php echo gmdate('Y-m-d g:i:s a'); ?></code></td> 
      </tr>
      <tr>
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_DIFFER; ?></th>
        <td><input name="gmt_offset" type="text" id="gmt_offset" size="2" value="<?php echo get_settings('gmt_offset'); ?>" /> 
        <?php echo _LANG_WAO_GENERAL_HOURS; ?></td>
      </tr>
      <tr>
      	<th id="leftmark" scope="row">&nbsp;</th>
      	<td><?php echo _LANG_WAO_GENERAL_CODE; ?></td>
      	</tr>
      <tr>
      	<th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_DDATE; ?></th>
      	<td><input name="date_format" type="text" id="date_format" size="30" value="<?php echo get_settings('date_format'); ?>" /><br />
<?php echo _LANG_WAO_GENERAL_OUTPUT; ?> <strong><?php echo gmdate(get_settings('date_format'), current_time('timestamp')); ?></strong></td>
      	</tr>
      <tr>
        <th id="leftmark" scope="row"><?php echo _LANG_WAO_GENERAL_DTIME; ?></th>
      	<td><input name="time_format" type="text" id="time_format" size="30" value="<?php echo get_settings('time_format'); ?>" /><br />
<?php echo _LANG_WAO_GENERAL_OUTPUT; ?> <strong><?php echo gmdate(get_settings('time_format'), current_time('timestamp')); ?></strong></td>
      	</tr> 
</table>

    </fieldset> 
    <p class="submit">
      <input type="submit" name="Submit" value="<?php echo _LANG_WAO_GENERAL_UPDATE; ?>" />
    </p>
  </form> 
</div> 
<?php include("admin-footer.php") ?>