X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=doc%2Fplugin.txt;h=96a899e2eb58afca46519ef2150436b8f44908cf;hb=1ffd5e3192569d7e82fa665ad0ea6b5d35099ec9;hp=47f31f9aa080561fb6b9c5c356e5ded70532010b;hpb=3937dc897c755fd614e122351d54028ac369827f;p=squirrelmail.git diff --git a/doc/plugin.txt b/doc/plugin.txt index 47f31f9a..96a899e2 100644 --- a/doc/plugin.txt +++ b/doc/plugin.txt @@ -74,12 +74,24 @@ in the plugin directory is requested, it must do a chdir("..") before including any of the standard SquirrelMail files. +Hook Data Passed +---------------- +Hooks, when executed, are called with one parameter, an array of data +that is passed to the hook. The first element in the array is the name +of the hook that is being called. Any other elements in the array are +dependant on the type of hook that is being called. + +Some of the information in the array may be changed. By default, the +plugins should never change data unless it is documented otherwise. + + List of hooks ------------- generic_header functions/page_header.php menuline functions/page_header.php compose_button_row src/compose.php compose_bottom src/compose.php + compose_form src/compose.php left_main_before src/left_main.php left_main_after src/left_main.php * options_save src/options.php (see note on options) @@ -101,12 +113,16 @@ List of hooks mailbox_index_before functions/mailbox_display.php mailbox_index_after functions/mailbox_display.php mailbox_form_before functions/mailbox_display.php + subject_link functions/mailbox_display.php right_main_after_header src/right_main.php right_main_bottom src/right_main.php login_top src/login.php login_bottom src/login.php + html_top src/read_body.php read_body_top src/read_body.php read_body_bottom src/read_body.php + html_bottom src/read_body.php + read_body_header src/read_body.php search_before_form src/search.php search_after_form src/search.php search_bottom src/search.php @@ -115,7 +131,8 @@ List of hooks help_chapter src/help.php addrbook_html_search_below src/addrbook_search_html.php addressbook_bottom src/addressbook.php - ^ attachment $type0/$type1 functions/mime.php + ^ attachment $type0/$type1 functions/mime.php (see note on attachments) + (*) Options ----------- @@ -125,14 +142,6 @@ The second way, you create your own section that they can choose from and it displays its own range of options. -(^) Attachment Hooks --------------------- -When a message has attachments, this hook is called with the MIME types. For -instance, a .zip file hook is "attachment application/x-zip". The hook should -probably show a link to do a specific action, such as "Verify" or "View" for a -.zip file. - - First: Integrating into existing options ----------------------------------------- There are two hooks you need to use for this one: @@ -199,3 +208,30 @@ three hooks you will need to use. You should put the code in here that loads your preferences back into usable variables. Examples of this can be found in the file src/load_prefs.php + + +(^) Attachment Hooks +-------------------- +When a message has attachments, this hook is called with the MIME types. For +instance, a .zip file hook is "attachment application/x-zip". The hook should +probably show a link to do a specific action, such as "Verify" or "View" for a +.zip file. + +This is a breakdown of the data passed in the array to the hook that is called: + + [0] = Hook's name ('attachment text/plain') + [1] = Array of links of actions (more below) (Alterable) + [2] = Used for returning to mail message (startMessage) + [3] = Used for finding message to display (id) + [4] = Mailbox name, urlencode()'d (urlMailbox) + [5] = Entity ID inside mail message (ent) + [6] = Default URL to go to when filename is clicked on (Alterable) + [7] = Filename that is displayed for the attachment + [8] = Sent if message was found from a search (where) + [9] = Sent if message was found from a search (what) + +To set up links for actions, you assign them like this: + + $Args[1]['your_plugin_name']['href'] = 'URL to link to'; + $Args[1]['your_plugin_name']['text'] = 'What to display'; +