2012-02-08 23:14:28 +01:00
|
|
|
<?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');
|
|
|
|
|
|
|
|
$this->load->model('policy/archiving');
|
|
|
|
|
|
|
|
$this->document->title = $this->data['text_archiving_rules'];
|
|
|
|
|
|
|
|
$this->data['rules'] = array();
|
|
|
|
|
2012-02-19 22:59:47 +01:00
|
|
|
if(Registry::get('admin_user') == 0) {
|
|
|
|
die("go away");
|
|
|
|
}
|
2012-02-08 23:14:28 +01:00
|
|
|
|
|
|
|
if($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
$rc = $this->model_policy_archiving->add_new_rule($this->request->post);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->data['rules'] = $this->model_policy_archiving->get_rules();
|
|
|
|
|
|
|
|
|
|
|
|
$this->render();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|