0d92dc0ec59cbb6486caf051e79d2c5286a32dbd
4 * SquirrelMail Demo Plugin
5 * @copyright © 2006-2007 The SquirrelMail Project Team
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
15 * Register this plugin with SquirrelMail
20 function squirrelmail_plugin_init_demo()
22 //FIXME: put *ALL* SM hooks in here... which includes template_construct hooks for any templates that have plugin output sections in them... and put them all in the right order
23 //FIXME: many hooks have examples in the original demo plugin in trunk/plugins/demo
25 global $squirrelmail_plugin_hooks;
27 //FIXME: this hook not yet implemented below
28 $squirrelmail_plugin_hooks['login_cookie']['demo']
29 = 'demo_login_cookie';
31 //FIXME: not all of the above hooks are yet implemented below
32 $squirrelmail_plugin_hooks['login_top']['demo']
35 //FIXME: not all of the above hooks are yet implemented below
36 $squirrelmail_plugin_hooks['login_bottom']['demo']
37 = 'demo_login_bottom';
39 //FIXME: this template may have more plugin output sections that are not yet implemented below
40 $squirrelmail_plugin_hooks['template_construct_page_header.tpl']['demo']
41 = 'demo_page_header_template';
43 $squirrelmail_plugin_hooks['optpage_register_block']['demo']
51 * Returns info about this plugin
53 * @return array An array of plugin information.
60 'english_name' => 'Demo',
62 'summary' => 'This plugin provides test/sample code for many of the hook points in the SquirrelMail core.',
63 'details' => 'This plugin provides test/sample code for many of the hook points in the SquirrelMail core.',
64 'requires_configuration' => 0,
65 'requires_source_patch' => 0,
73 * Returns version info about this plugin
76 function demo_version()
79 return $info['version'];
85 * Add link to menu at top of content pane
90 function demo_page_header_template()
92 include_once(SM_PATH
. 'plugins/demo/functions.php');
93 return demo_page_header_template_do();
99 * Inserts an option block in the main SM options page
104 function demo_option_link()
106 include_once(SM_PATH
. 'plugins/demo/functions.php');
107 demo_option_link_do();