mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 11:32:00 +01:00
66 lines
1.8 KiB
PHP
66 lines
1.8 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'] = '';
|
|
|
|
$this->data['search'] = '';
|
|
|
|
if(isset($this->request->post['search'])) { $this->data['search'] = $this->request->post['search']; }
|
|
else if(isset($this->request->get['search'])) { $this->data['search'] = $this->request->get['search']; }
|
|
|
|
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->data['search']);
|
|
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
private function validate() {
|
|
if($this->request->post['from'] == '' && $this->request->post['to'] == '' &&
|
|
$this->request->post['subject'] == '' && $this->request->post['body'] == '' && $this->request->post['size'] == '' &&
|
|
$this->request->post['attachment_name'] == '' && $this->request->post['attachment_type'] == '' && $this->request->post['attachment_size'] == '' &&
|
|
$this->request->post['spam'] == -1
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|