diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 37968d7a9e..f7a08cad4a 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -14,7 +14,7 @@ services: - MYSQL_USER=cypht - MYSQL_PASSWORD=cypht_password cypht: - image: cypht/cypht:2.1.0 + image: cypht/cypht:2.2.0 ports: - "80:80" # env_file: diff --git a/index.php b/index.php index 68e2bfd42d..65cdc53bed 100644 --- a/index.php +++ b/index.php @@ -16,6 +16,7 @@ define('VENDOR_PATH', APP_PATH.'vendor/'); define('CONFIG_PATH', APP_PATH.'config/'); define('WEB_ROOT', ''); +define('ASSETS_THEMES_ROOT', APP_PATH.'site/'); define('DEBUG_MODE', true); define('CACHE_ID', ''); define('SITE_ID', ''); diff --git a/lib/db.php b/lib/db.php index 52b4a5ece0..908aefb863 100644 --- a/lib/db.php +++ b/lib/db.php @@ -143,6 +143,7 @@ static public function connect($site_config) { return self::$dbh[$key]; } catch (Exception $oops) { Hm_Debug::add($oops->getMessage()); + Hm_Msgs::add('ERRUnable to connect to the database. Please check your configuration settings and try again.'); self::$dbh[$key] = false; return false; } diff --git a/modules/contacts/modules.php b/modules/contacts/modules.php index 63f7b8de0c..c03f1e8166 100644 --- a/modules/contacts/modules.php +++ b/modules/contacts/modules.php @@ -144,6 +144,8 @@ public function process() { } $this->out('contact_page', $page); $this->out('contact_store', $contacts, false); + $this->out('enable_warn_contacts_cc_not_exist_in_list_contact', $this->user_config->get('enable_warn_contacts_cc_not_exist_in_list_contact_setting', false)); + } } @@ -429,6 +431,56 @@ protected function output() { } } +/** + * @subpackage contacts/output + */ +class Hm_Output_load_contact_mails extends Hm_Output_Module { + protected function output() { + if (!$this->get("enable_warn_contacts_cc_not_exist_in_list_contact")) { + return ""; + } + $contact_store = $this->get('contact_store'); + $emails = []; + foreach ($contact_store->dump() as $contact) { + $email = $contact->value('email_address'); + if ($email) { + $emails[] = $email; + } + } + $emails = json_encode($emails); + return ""; + } +} + +/** + * @subpackage contacts/output + */ +class Hm_Output_enable_warn_contacts_cc_not_exist_in_list_contact extends Hm_Output_Module { + protected function output() { + $settings = $this->get('user_settings'); + if (array_key_exists('enable_warn_contacts_cc_not_exist_in_list_contact', $settings) && $settings['enable_warn_contacts_cc_not_exist_in_list_contact']) { + $checked = ' checked="checked"'; + $reset = ''; + } + else { + $checked = ''; + $reset=''; + } + return '
${hm_trans('Name')} : | ${name} |