Added All messages display
[squirrelmail.git] / functions / plugin.php
index 7d209e844818d68e3feeca9676d0921db57f561b..fdc7020dee4ce3785994d67ddd6384b63a659142 100644 (file)
@@ -1,23 +1,36 @@
 <?php
 
-    /**
-    ** plugin.php
-    **
-    ** This file provides the framework for a plugin architecture.
-    **
-    ** Plugins will eventually be a way to provide added functionality
-    ** without having to patch the SquirrelMail source code. Have some
-    ** patience, though, as the these funtions might change in the near
-    ** future.
-    **
-    ** Documentation on how to write plugins might show up some time.
-    **
-    ** $Id$
-    **/
-
-    global $squirrelmail_plugin_hooks;
-
-    $squirrelmail_plugin_hooks = array();
+/**
+ * plugin.php
+ *
+ * Copyright (c) 1999-2001 The SquirrelMail Development Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * This file provides the framework for a plugin architecture.
+ *
+ * Documentation on how to write plugins might show up some time.
+ *
+ * $Id$
+ */
+
+/*****************************************************************/
+/*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
+/*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
+/***    + Base level indent should begin at left margin, as    ***/
+/***      the first line of the function definition below.     ***/
+/***    + All identation should consist of four space blocks   ***/
+/***    + Tab characters are evil.                             ***/
+/***    + all comments should use "slash-star ... star-slash"  ***/
+/***      style -- no pound characters, no slash-slash style   ***/
+/***    + FLOW CONTROL STATEMENTS (if, while, etc) SHOULD      ***/
+/***      ALWAYS USE { AND } CHARACTERS!!!                     ***/
+/***    + Please use ' instead of ", when possible. Note "     ***/
+/***      should always be used in _( ) function calls.        ***/
+/*** Thank you for your help making the SM code more readable. ***/
+/*****************************************************************/
+
+global $squirrelmail_plugin_hooks;
+$squirrelmail_plugin_hooks = array();
 
     // This function adds a plugin
     function use_plugin ($name) {
@@ -60,4 +73,4 @@
         }
     }
 
-?>
\ No newline at end of file
+?>