f0deaa00bc2b99f0171e58a5a50c37386a624c9f
4 * SquirrelMail Test Plugin
5 * @copyright 2006-2012 The SquirrelMail Project Team
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * Register this plugin with SquirrelMail
18 function squirrelmail_plugin_init_test() {
20 global $squirrelmail_plugin_hooks;
22 $squirrelmail_plugin_hooks['template_construct_page_header.tpl']['test']
29 * Add link to menu at top of content pane
34 function test_menuline() {
36 include_once(SM_PATH
. 'plugins/test/functions.php');
37 return test_menuline_do();
43 * Returns info about this plugin
45 * @return array An array of plugin information.
52 'english_name' => 'Test',
54 'summary' => 'This plugin provides some test mechanisms for further diagnosis of the system upon which you are attempting to run SquirrelMail.',
55 'details' => 'This plugin provides some test mechanisms for further diagnosis of the system upon which you are attempting to run SquirrelMail.',
56 'requires_configuration' => 0,
57 'requires_source_patch' => 0,
64 * Returns version info about this plugin
67 function test_version()
71 return $info['version'];