mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 14:31:59 +01:00
49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
<?php
|
|
|
|
|
|
class ModelPolicyFolder extends Model {
|
|
|
|
public function get_rules($s = '') {
|
|
if($s) {
|
|
$query = $this->db->query("SELECT * FROM " . TABLE_FOLDER_RULE . " WHERE domain LIKE ? OR `from` LIKE ? OR `subject` LIKE ? OR `body` LIKE ? ORDER BY domain, id", array('%' . $s . '%', '%' . $s . '%', '%' . $s . '%', '%' . $s . '%'));
|
|
} else {
|
|
$query = $this->db->query("SELECT * FROM " . TABLE_FOLDER_RULE . " ORDER BY domain, id");
|
|
}
|
|
|
|
if(isset($query->rows)) { return $query->rows; }
|
|
|
|
return array();
|
|
}
|
|
|
|
|
|
public function get_rule($id = 0) {
|
|
$query = $this->db->query("SELECT * FROM " . TABLE_FOLDER_RULE . " WHERE id=?", array($id));
|
|
|
|
if(isset($query->row)) { return $query->row; }
|
|
|
|
return array();
|
|
}
|
|
|
|
|
|
public function add_new_rule($data = array()) {
|
|
$domain = '';
|
|
|
|
if(isset($data['domain'])) { $domain = $data['domain']; }
|
|
|
|
$query = $this->db->query("INSERT INTO " . TABLE_FOLDER_RULE . " (`domain`,`from`,`to`,`subject`,`body`,`_size`,`size`,`attachment_name`,`attachment_type`,`_attachment_size`,`attachment_size`,`spam`,`folder_id`) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)", array($domain, $data['from'], $data['to'], $data['subject'], $data['body'], $data['_size'], $data['size'], $data['attachment_name'], $data['attachment_type'], $data['_attachment_size'], $data['attachment_size'], $data['spam'], $data['folder_id']) );
|
|
|
|
return $this->db->countAffected();
|
|
}
|
|
|
|
|
|
public function remove_rule($id = 0) {
|
|
$query = $this->db->query("DELETE FROM " . TABLE_FOLDER_RULE . " WHERE id=?", array($id));
|
|
|
|
return $this->db->countAffected();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|