+/**
+ * Validate that this plugin is configured correctly
+ *
+ * @return boolean Whether or not there was a
+ * configuration error for this plugin.
+ *
+ */
+function demo_check_configuration_do()
+{
+
+ // test for something that this plugin requires, print error if
+ // misconfigured or requirements are missing
+ //
+ if (FALSE) // put something meaningful here
+ {
+ do_err('Demo plugin is missing something important', FALSE);
+ return TRUE; // return FALSE if you only want to display a non-critical error
+ }
+
+ return FALSE;
+
+}
+
+
+
$squirrelmail_plugin_hooks['optpage_register_block']['demo']
= 'demo_option_link';
+ $squirrelmail_plugin_hooks['configtest']['demo']
+ = 'demo_check_configuration';
}
+/**
+ * Validate that this plugin is configured correctly
+ *
+ * @return boolean Whether or not there was a
+ * configuration error for this plugin.
+ *
+ */
+function demo_check_configuration()
+{
+ include_once(SM_PATH . 'plugins/demo/functions.php');
+ return demo_check_configuration_do();
+}
+
+
+