JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
add admin_email_templates
[wfpl-cms.git] / config.php
index e60cbd7..da021ef 100644 (file)
@@ -29,3 +29,24 @@ require_once(DOCROOT . 'inc/misc.php');
 
 # Connect to the database
 db_connect(WFPL_DB, WFPL_DB_USER, WFPL_DB_PASS);
+
+# upgrade db (only) on special trigger (assures only one upgrade at a time)
+if (isset($_SERVER['HTTP_X_UPGRADE_DB_NOW'])) {
+       require_once(DOCROOT . 'inc/db_upgrade.php');
+       db_upgrade();
+}
+
+$GLOBALS['email_templates'] = [
+       'backend_bug' => [
+               'title' => "Notification for site programmer(s)",
+               'description' => "This email template is used if/when the back-end code of this site encounters an unusual/suspicious situation that it's not sure how to cope with.",
+               'variables' => [
+                       ['message', "details about the unusual/suspicious situation"]
+               ],
+               'subject' => "backend alert",
+               'content' => "Hi developer,\n\nPlease investigate the following debugging message from the site:\n\n~message~"
+               'from_addr' => 'noreply@example.com',
+               'to_addr' => 'fixme@example.com' # not all templates need this field
+       ]
+       # ...
+];