fixed select all bug with spaces in folder name
[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
a3a95e4a 77Hook Data Passed
78----------------
79Hooks, when executed, are called with one parameter, an array of data
80that is passed to the hook. The first element in the array is the name
81of the hook that is being called. Any other elements in the array are
82dependant on the type of hook that is being called.
83
84Some of the information in the array may be changed. By default, the
85plugins should never change data unless it is documented otherwise.
86
87
6b638171 88List of hooks
89-------------
ef3c69f0 90 generic_header functions/page_header.php
91 menuline functions/page_header.php
92 compose_button_row src/compose.php
93 compose_bottom src/compose.php
94 left_main_before src/left_main.php
95 left_main_after src/left_main.php
96 * options_save src/options.php (see note on options)
97 * options_link_and_description src/options.php (see note on options)
98 * options_highlight_bottom src/options_highlight.php
99 * options_personal_bottom src/options_personal.php
100 * options_personal_inside src/options_personal.php
101 * options_personal_save src/options_personal.php
102 * options_display_bottom src/options_display.php
103 * options_display_inside src/options_display.php
3751dc7f 104 * options_display_save src/options_display.php
ef3c69f0 105 * options_folders_bottom src/options_folders.php
106 * options_folders_inside src/options_folders.php
107 * options_folders_save src/options_folders.php
108 logout src/signout.php
109 login_before src/webmail.php
110 login_verified src/webmail.php
111 loading_prefs src/load_prefs.php
112 mailbox_index_before functions/mailbox_display.php
113 mailbox_index_after functions/mailbox_display.php
3751dc7f 114 mailbox_form_before functions/mailbox_display.php
ef3c69f0 115 right_main_after_header src/right_main.php
116 right_main_bottom src/right_main.php
117 login_top src/login.php
118 login_bottom src/login.php
441f2d33 119 html_top src/read_body.php
ef3c69f0 120 read_body_top src/read_body.php
121 read_body_bottom src/read_body.php
441f2d33 122 html_bottom src/read_body.php
7137f80f 123 read_body_header src/read_body.php
ef3c69f0 124 search_before_form src/search.php
125 search_after_form src/search.php
126 search_bottom src/search.php
127 help_top src/help.php
128 help_bottom src/help.php
129 help_chapter src/help.php
3937dc89 130 addrbook_html_search_below src/addrbook_search_html.php
ef3c69f0 131 addressbook_bottom src/addressbook.php
a3a95e4a 132 ^ attachment $type0/$type1 functions/mime.php (see note on attachments)
133
06ad27a2 134
ef3c69f0 135(*) Options
136-----------
137There are two ways to do options for your plugin. First, you can incorporate it
138into an existing section of the preferences (Display, Personal, or Folders).
139The second way, you create your own section that they can choose from and it
140displays its own range of options.
141
142
143First: Integrating into existing options
144-----------------------------------------
145There are two hooks you need to use for this one:
146
1471. options_YOUCHOOSE_inside
148 This is the code that goes inside the table for the section you choose. Since
149 it is going inside an existing table, it must be in this form:
150 ------cut here-------
151 <tr>
152 <td>
153 OPTION_NAME
154 </td>
155 <td>
156 OPTION_INPUT
157 </td>
158 </tr>
159 ------cut here-------
160
1612. options_YOUCHOOSE_save
162 This is the code that saves your preferences into the users' preference
163 file. For an example of how to do this, see src/options.php.
164
165
166Second: Create your own section
167-------------------------------
6b638171 168It is possible to create your own options sections with plugins. There are
169three hooks you will need to use.
170
1711. options_link_and_description
172 This creates the link and has a description that are shown on the options
173 page. This should output HTML that looks like this:
174
175 -----cut here-----
176 function my_function() {
177 global $color
178 ?>
179 <table width=50% cellpadding=3 cellspacing=0 border=0 align=center>
180 <tr>
181 <td bgcolor="<? echo $color[9] ?>">
182 <a href="../plugins/YOUR_PLUGIN/YOUR_OPTIONS.php">YOUR OPTIONS NAME</a>
183 </td>
184 </tr>
185 <tr>
186 <td bgcolor="<? echo $color[0] ?>">
187 YOUR DESCRIPTION
188 </td>
189 </tr>
190 </table>
191 <?php
192 }
193 -----cut here-----
194
1952. options_save
196 Here is the code that you need to do to save your options in the
197 preference files or manipulate whatever data you are trying to change
198 through the options section. You can look at options.php for details
199 on how this is to be done.
200
2013. loading_prefs (optional)
202 If you are wanting to save preferences to the preference files, then
203 you need to do this step as well. Otherwise if you are manipulating
204 other data, ignore this step.
205
206 You should put the code in here that loads your preferences back
207 into usable variables. Examples of this can be found in the file
208 src/load_prefs.php
a3a95e4a 209
210
211(^) Attachment Hooks
212--------------------
213When a message has attachments, this hook is called with the MIME types. For
214instance, a .zip file hook is "attachment application/x-zip". The hook should
215probably show a link to do a specific action, such as "Verify" or "View" for a
216.zip file.
217
218This is a breakdown of the data passed in the array to the hook that is called:
219
220 [0] = Hook's name ('attachment text/plain')
221 [1] = Array of links of actions (more below) (Alterable)
222 [2] = Used for returning to mail message (startMessage)
223 [3] = Used for finding message to display (id)
224 [4] = Mailbox name, urlencode()'d (urlMailbox)
225 [5] = Entity ID inside mail message (ent)
226 [6] = Default URL to go to when filename is clicked on (Alterable)
ef30bf50 227 [7] = Filename that is displayed for the attachment
228 [8] = Sent if message was found from a search (where)
229 [9] = Sent if message was found from a search (what)
a3a95e4a 230
231To set up links for actions, you assign them like this:
232
233 $Args[1]['your_plugin_name']['href'] = 'URL to link to';
234 $Args[1]['your_plugin_name']['text'] = 'What to display';
441f2d33 235