piler/webui/controller/policy/archiving.php
2013-02-03 16:50:56 +01:00

61 lines
1.4 KiB
PHP

<?php
class ControllerPolicyArchiving extends Controller {
private $error = array();
public function index(){
$this->id = "content";
$this->template = "policy/archiving.tpl";
$this->layout = "common/layout";
$request = Registry::get('request');
$db = Registry::get('db');
$lang = Registry::get('language');
$this->load->model('policy/archiving');
$this->document->title = $this->data['text_archiving_rules'];
$this->data['rules'] = array();
$this->data['error'] = '';
if(Registry::get('admin_user') == 0) {
die("go away");
}
if($_SERVER['REQUEST_METHOD'] == 'POST') {
if($this->validate() == true) {
$rc = $this->model_policy_archiving->add_new_rule($this->request->post);
} else {
$this->data['error'] = $lang->data['text_invalid_data'];
}
}
$this->data['rules'] = $this->model_policy_archiving->get_rules();
$this->render();
}
private function validate() {
if($this->request->post['from'] == '' && $this->request->post['to'] == '' &&
$this->request->post['subject'] == '' && $this->request->post['size'] == '' &&
$this->request->post['attachment_type'] == '' && $this->request->post['attachment_size'] == '' &&
$this->request->post['spam'] == -1
) {
return false;
}
return true;
}
}
?>