Portions created by the Initial Developer are Copyright (C) 2008-2019 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //define the email logs class if (!class_exists('email_logs')) { class email_logs { /** * declare private parameters */ private $app_name; private $app_uuid; private $permission_prefix; private $list_page; private $table; private $uuid_prefix; /** * called when the object is created */ public function __construct() { //assign private parameters $this->app_name = 'email_logs'; $this->app_uuid = 'bd64f590-9a24-468d-951f-6639ac728694'; $this->permission_prefix = 'email_log_'; $this->list_page = 'email_logs.php'; $this->table = 'email_logs'; $this->uuid_prefix = 'email_log_'; } /** * delete records */ public function delete($records) { if (permission_exists($this->permission_prefix.'delete')) { //add multi-lingual support $language = new text; $text = $language->get(); //validate the token $token = new token; if (!$token->validate('/app/email_logs/email_logs.php')) { message::add($text['message-invalid_token'],'negative'); header('Location: '.$this->list_page); exit; } //delete multiple records if (is_array($records) && @sizeof($records) != 0) { //build the delete array foreach ($records as $x => $record) { if ($record['checked'] == 'true' && is_uuid($record['uuid'])) { $array[$this->table][$x][$this->uuid_prefix.'uuid'] = $record['uuid']; } } //delete the checked rows if (is_array($array) && @sizeof($array) != 0) { //execute delete $database = new database; $database->app_name = $this->app_name; $database->app_uuid = $this->app_uuid; $database->delete($array); unset($array); //set message message::add($text['message-delete']); } unset($records); } } } /** * resend records */ public function resend($records) { if (permission_exists($this->permission_prefix.'resend')) { //add multi-lingual support $language = new text; $text = $language->get(); //validate the token $token = new token; if (!$token->validate('/app/email_logs/email_logs.php')) { message::add($text['message-invalid_token'],'negative'); header('Location: '.$this->list_page); exit; } //resend multiple records (eventually) if (is_array($records) && @sizeof($records) != 0) { //retrieve checked records foreach($records as $x => $record) { if ($record['checked'] == 'true' && is_uuid($record['uuid'])) { $uuids[] = $record['uuid']; } } //resend emails if (is_array($uuids) && @sizeof($uuids) != 0) { $x = 0; foreach ($uuids as $x => $uuid) { //get email message $sql = "select email from v_email_logs "; $sql .= "where email_log_uuid = :email_log_uuid "; $parameters['email_log_uuid'] = $uuid; $database = new database; $msg = $database->select($sql, $parameters, 'column'); $found = $msg != '' ? true : false; unset($sql, $parameters, $row); //resend email if ($found) { $resend = true; require "secure/v_mailto.php"; if ($sent) { //build the delete array $array[$this->table][$x][$this->uuid_prefix.'uuid'] = $uuid; //grant temporary permissions $p = new permissions; $p->add('email_log_delete', 'temp'); //delete the email log $database = new database; $database->app_name = $this->app_name; $database->app_uuid = $this->app_uuid; $database->delete($array); unset($array); //revoke temporary permissions $p->delete('email_log_delete', 'temp'); //set message message::add($text['message-message_resent']); } else { //set message message::add($text['message-resend_failed'].": ".$email->email_error, 'negative', 4000); } } //increment counter $x++; } } } } } } //class } ?>