Prevent endless recursive sent subfolder names - see: http://thread.gmane.org/gmane...
[squirrelmail.git] / plugins / demo / setup.php
CommitLineData
0aa6aa6f 1<?php
2
3/**
4 * SquirrelMail Demo Plugin
c0d96801 5 * @copyright 2006-2012 The SquirrelMail Project Team
0aa6aa6f 6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @version $Id$
8 * @package plugins
9 * @subpackage demo
10 */
11
12
13
14/**
15 * Register this plugin with SquirrelMail
16 *
17 * @return void
18 *
19 */
20function squirrelmail_plugin_init_demo()
21{
e04de0b9 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
0aa6aa6f 24
25 global $squirrelmail_plugin_hooks;
26
e04de0b9 27//FIXME: this hook not yet implemented below
0aa6aa6f 28 $squirrelmail_plugin_hooks['login_cookie']['demo']
29 = 'demo_login_cookie';
30
e04de0b9 31//FIXME: not all of the above hooks are yet implemented below
0aa6aa6f 32 $squirrelmail_plugin_hooks['login_bottom']['demo']
33 = 'demo_login_bottom';
34
e04de0b9 35//FIXME: this template may have more plugin output sections that are not yet implemented below
0aa6aa6f 36 $squirrelmail_plugin_hooks['template_construct_page_header.tpl']['demo']
37 = 'demo_page_header_template';
38
e04de0b9 39 $squirrelmail_plugin_hooks['optpage_register_block']['demo']
40 = 'demo_option_link';
41
6b5eb340 42 $squirrelmail_plugin_hooks['configtest']['demo']
43 = 'demo_check_configuration';
0aa6aa6f 44}
45
46
47
48/**
49 * Returns info about this plugin
50 *
51 * @return array An array of plugin information.
52 *
53 */
54function demo_info()
55{
56
57 return array(
58 'english_name' => 'Demo',
6d31bea8 59 'version' => 'CORE',
0aa6aa6f 60 'summary' => 'This plugin provides test/sample code for many of the hook points in the SquirrelMail core.',
61 'details' => 'This plugin provides test/sample code for many of the hook points in the SquirrelMail core.',
62 'requires_configuration' => 0,
63 'requires_source_patch' => 0,
64 );
65
66}
67
68
69
70/**
71 * Returns version info about this plugin
72 *
73 */
74function demo_version()
75{
76 $info = demo_info();
77 return $info['version'];
78}
79
80
81
82/**
83 * Add link to menu at top of content pane
84 *
85 * @return void
86 *
87 */
88function demo_page_header_template()
89{
90 include_once(SM_PATH . 'plugins/demo/functions.php');
91 return demo_page_header_template_do();
92}
93
94
95
e04de0b9 96/**
97 * Inserts an option block in the main SM options page
98 *
99 * @return void
100 *
101 */
102function demo_option_link()
103{
104 include_once(SM_PATH . 'plugins/demo/functions.php');
105 demo_option_link_do();
106}
107
108
109
6b5eb340 110/**
111 * Validate that this plugin is configured correctly
112 *
113 * @return boolean Whether or not there was a
114 * configuration error for this plugin.
115 *
116 */
117function demo_check_configuration()
118{
119 include_once(SM_PATH . 'plugins/demo/functions.php');
120 return demo_check_configuration_do();
121}
122
123
124