tweaks, fixed some misspellings, added a few hooks
[squirrelmail.git] / doc / plugin.txt
CommitLineData
1aaef171 1A FEW NOTES ON THE PLUGIN ARCHITECTURE
2======================================
3
4The plugin architecture of SquirrelMail is designed to make it
5possible to add new features without having to patch SquirrelMail
6itself. At the moment the plugin part of SquirrelMail should be
7considered "alpha" or "beta" quality code.
8
9Until the functionality and code is more stable, be prepared for
10plugins to suddenly stop working.
11
12Functionality like password changing, displaying ads and calendars
13should be possible to add as plugins.
14
15
16The idea
17--------
18
19The idea is to be able to run random code at given places in the
20SquirrelMail code. This random code should then be able to do whatever
21needed to enhance the functionality of SquirrelMail. The places where
22code can be executed are called "hooks".
23
24There are some limitations in what these hooks can do. It is difficult
25to use them to change the layout and to change functionality that
26already is in SquirrelMail.
27
28Some way for the plugins to interact with the help subsystem and
29translations will be provided.
30
31
32The implementation
33------------------
34
35In the main SquirrelMail files the file functions/plugin.php. In
36places where hooks are made available they are executed by calling the
37function do_hook("hookname").
38
39The do_hook traverses the array $squirrelmail_plugin_hooks["hookname"]
40and executes all the functions that are named in that array.
41
42A plugin must reside in a subdirectory in the plugins/ directory. The
43name of the subdirectory is considered the name of the plugin.
44
45To start using a plugin, its name must be added to the $plugins array
46in config.php like this:
47
48 $plugins[0] = "plugin_name";
49
50When a plugin is registered the file plugins/plugin_name/setup.php is
51included and the function squirrelmail_plugin_init_plugin_name is
52called with no parameters.
53
54
55Writing plugins
56---------------
57
58A plugin must consist of at least a file called setup.php. All other
59files the plugin consist of should also be in the plugin directory.
60
61The function squirrelmail_plugin_init_plugin_name is called to
62initalize a plugin. This function could look something like this:
63
64function squirrelmail_plugin_init_demo () {
65 global $squirrelmail_plugin_hooks;
66
67 $squirrelmail_plugin_hooks["generic_header"]["demo"] = "plugin_demo_header";
68 $squirrelmail_plugin_hooks["menuline"]["demo"] = "plugin_demo_menuline";
69}
70
71Note that the SquirrelMail files assume that all other SquirrelMail
72files are available as ../directory/file. This means that if some file
73in the plugin directory is requested, it must do a chdir("..") before
74including any of the standard SquirrelMail files.
6b638171 75
76
77List of hooks
78-------------
ef3c69f0 79 generic_header functions/page_header.php
80 menuline functions/page_header.php
81 compose_button_row src/compose.php
82 compose_bottom src/compose.php
83 left_main_before src/left_main.php
84 left_main_after src/left_main.php
85 * options_save src/options.php (see note on options)
86 * options_link_and_description src/options.php (see note on options)
87 * options_highlight_bottom src/options_highlight.php
88 * options_personal_bottom src/options_personal.php
89 * options_personal_inside src/options_personal.php
90 * options_personal_save src/options_personal.php
91 * options_display_bottom src/options_display.php
92 * options_display_inside src/options_display.php
3751dc7f 93 * options_display_save src/options_display.php
ef3c69f0 94 * options_folders_bottom src/options_folders.php
95 * options_folders_inside src/options_folders.php
96 * options_folders_save src/options_folders.php
97 logout src/signout.php
98 login_before src/webmail.php
99 login_verified src/webmail.php
100 loading_prefs src/load_prefs.php
101 mailbox_index_before functions/mailbox_display.php
102 mailbox_index_after functions/mailbox_display.php
3751dc7f 103 mailbox_form_before functions/mailbox_display.php
ef3c69f0 104 right_main_after_header src/right_main.php
105 right_main_bottom src/right_main.php
106 login_top src/login.php
107 login_bottom src/login.php
108 read_body_top src/read_body.php
109 read_body_bottom src/read_body.php
110 search_before_form src/search.php
111 search_after_form src/search.php
112 search_bottom src/search.php
113 help_top src/help.php
114 help_bottom src/help.php
115 help_chapter src/help.php
116 abook_html_search_below src/addrbook_search_html.php
117 addressbook_bottom src/addressbook.php
3751dc7f 118 attachment $type0/$type1 functions/mime.php
06ad27a2 119
ef3c69f0 120(*) Options
121-----------
122There are two ways to do options for your plugin. First, you can incorporate it
123into an existing section of the preferences (Display, Personal, or Folders).
124The second way, you create your own section that they can choose from and it
125displays its own range of options.
126
127
128First: Integrating into existing options
129-----------------------------------------
130There are two hooks you need to use for this one:
131
1321. options_YOUCHOOSE_inside
133 This is the code that goes inside the table for the section you choose. Since
134 it is going inside an existing table, it must be in this form:
135 ------cut here-------
136 <tr>
137 <td>
138 OPTION_NAME
139 </td>
140 <td>
141 OPTION_INPUT
142 </td>
143 </tr>
144 ------cut here-------
145
1462. options_YOUCHOOSE_save
147 This is the code that saves your preferences into the users' preference
148 file. For an example of how to do this, see src/options.php.
149
150
151Second: Create your own section
152-------------------------------
6b638171 153It is possible to create your own options sections with plugins. There are
154three hooks you will need to use.
155
1561. options_link_and_description
157 This creates the link and has a description that are shown on the options
158 page. This should output HTML that looks like this:
159
160 -----cut here-----
161 function my_function() {
162 global $color
163 ?>
164 <table width=50% cellpadding=3 cellspacing=0 border=0 align=center>
165 <tr>
166 <td bgcolor="<? echo $color[9] ?>">
167 <a href="../plugins/YOUR_PLUGIN/YOUR_OPTIONS.php">YOUR OPTIONS NAME</a>
168 </td>
169 </tr>
170 <tr>
171 <td bgcolor="<? echo $color[0] ?>">
172 YOUR DESCRIPTION
173 </td>
174 </tr>
175 </table>
176 <?php
177 }
178 -----cut here-----
179
1802. options_save
181 Here is the code that you need to do to save your options in the
182 preference files or manipulate whatever data you are trying to change
183 through the options section. You can look at options.php for details
184 on how this is to be done.
185
1863. loading_prefs (optional)
187 If you are wanting to save preferences to the preference files, then
188 you need to do this step as well. Otherwise if you are manipulating
189 other data, ignore this step.
190
191 You should put the code in here that loads your preferences back
192 into usable variables. Examples of this can be found in the file
193 src/load_prefs.php