added compose_form plugin hook
[squirrelmail.git] / doc / plugin.txt
index a316b3144fc170c3a27c0eaf43aa0e9a81215a20..df4959147c69707ed0cb6b50bf6a7fd315469138 100644 (file)
@@ -91,6 +91,7 @@ List of hooks
   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)
@@ -116,8 +117,11 @@ List of hooks
   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
@@ -221,11 +225,12 @@ This is a breakdown of the data passed in the array to the hook that is called:
   [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] = Sent if message was found from a search (where)
-  [8] = Sent if message was found from a search (what)
+  [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';
-    
\ No newline at end of file
+