mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-10-31 02:32:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 
 | |
| class ControllerPolicyRetention extends Controller {
 | |
|    private $error = array();
 | |
| 
 | |
|    public function index(){
 | |
| 
 | |
|       $this->id = "content";
 | |
|       $this->template = "policy/retention.tpl";
 | |
|       $this->layout = "common/layout";
 | |
| 
 | |
| 
 | |
|       $request = Registry::get('request');
 | |
| 
 | |
|       $db = Registry::get('db');
 | |
| 
 | |
|       $this->load->model('policy/retention');
 | |
| 
 | |
|       $this->document->title = $this->data['text_retention_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");
 | |
|       }
 | |
| 
 | |
|       $lang = Registry::get('language');
 | |
| 
 | |
|       if($_SERVER['REQUEST_METHOD'] == 'POST') {
 | |
|          if($this->validate() == true) {
 | |
|             $rc = $this->model_policy_retention->add_new_rule($this->request->post);
 | |
|          } else {
 | |
|             $this->data['error'] = $lang->data['text_missing_data'];
 | |
|          }
 | |
| 
 | |
|       }
 | |
| 
 | |
|       $this->data['rules'] = htmlentities_on_array($this->model_policy_retention->get_rules($this->data['search']));
 | |
| 
 | |
| 
 | |
|       $this->render();
 | |
|    }
 | |
| 
 | |
| 
 | |
|    private function validate() {
 | |
|       if($this->request->post['days'] == '' || $this->request->post['days'] < 1) { return false; }
 | |
| 
 | |
|       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
 | |
|       ) {
 | |
|          if(ENABLE_SAAS == 1 && strlen($this->request->post['domain']) > 3) { return true; }
 | |
|          return false;
 | |
|       }
 | |
| 
 | |
|       return true;
 | |
|    }
 | |
| 
 | |
| 
 | |
| }
 |