Newer
Older
if(!defined('OSTADMININC') || !$thisstaff || !$thisstaff->isAdmin()) die('Access Denied');
$info=array();
$qstr='';
if($rule && $_REQUEST['a']!='add'){
$title='Update Ban Rule';
$action='update';
$submit_text='Update';
$info=$rule->getInfo();
$info['id']=$rule->getId();
$qstr.='&id='.$rule->getId();
}else {
$title='Add New Email Address to Ban List';
$action='add';
$submit_text='Add';
$info['isactive']=isset($info['isactive'])?$info['isactive']:1;
$qstr.='&a='.urlencode($_REQUEST['a']);
}
$info=Format::htmlchars(($errors && $_POST)?$_POST:$info);
?>
<form action="banlist.php?<?php echo $qstr; ?>" method="post" id="save">
<input type="hidden" name="do" value="<?php echo $action; ?>">
<input type="hidden" name="a" value="<?php echo Format::htmlchars($_REQUEST['a']); ?>">
<input type="hidden" name="id" value="<?php echo $info['id']; ?>">
<h2>Manage Email Ban Rule
<i class="help-tip icon-question-sign" href="#ban_list"></i>
</h2>
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<table class="form_table" width="940" border="0" cellspacing="0" cellpadding="2">
<thead>
<tr>
<th colspan="2">
<h4><?php echo $title; ?></h4>
<em>Valid email address required.</em>
</th>
</tr>
</thead>
<tbody>
<tr>
<td width="180" class="required">
Ban Status:
</td>
<td>
<input type="radio" name="isactive" value="1" <?php echo $info['isactive']?'checked="checked"':''; ?>><strong>Active</strong>
<input type="radio" name="isactive" value="0" <?php echo !$info['isactive']?'checked="checked"':''; ?>>Disabled
<span class="error">* </span>
</td>
</tr>
<tr>
<td width="180" class="required">
Email Address:
</td>
<td>
<input name="val" type="text" size="24" value="<?php echo $info['val']; ?>">
<span class="error">* <?php echo $errors['val']; ?></span>
</td>
</tr>
<tr>
<th colspan="2">
<em><strong>Internal notes</strong>: Admin notes </em>
</th>
</tr>
<tr>
<td colspan=2>
<textarea class="richtext no-bar" name="notes" cols="21"
rows="8" style="width: 80%;"><?php echo $info['notes']; ?></textarea>
</td>
</tr>
</tbody>
</table>
<p style="padding-left:225px;">
<input type="submit" name="submit" value="<?php echo $submit_text; ?>">
<input type="reset" name="reset" value="Reset">
<input type="button" name="cancel" value="Cancel" onclick='window.location.href="banlist.php"'>
</p>
</form>