Add id attribute to hyperlink and image templates
[squirrelmail.git] / plugins / calendar / setup.php
index 0b038665df17a644b3b9d7ef760f198aa92060e9..83aab7ad398d63059d0c3e7cafa3e0d0c6cde63f 100644 (file)
@@ -1,25 +1,29 @@
 <?php
-/*
- *  setup.php
- *
- *  Copyright (c) 2001 Michal Szczotka <michal@tuxy.org>
- *  Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- *  init plugin into squirrelmail
+
+/**
+ * Calendar plugin activation script
  *
- * $Id$ 
+ * @copyright &copy; 2002-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage calendar
  */
 
-
+/**
+ * Initialize the plugin
+ * @return void
+ */
 function squirrelmail_plugin_init_calendar() {
     global $squirrelmail_plugin_hooks;
     $squirrelmail_plugin_hooks['menuline']['calendar'] = 'calendar';
 }
 
+/**
+ * Adds Calendar link to upper menu
+ * @return void
+ */
 function calendar() {
-    //Add Calendar link to upper menu
     displayInternalLink('plugins/calendar/calendar.php',_("Calendar"),'right');
-    echo "&nbsp;&nbsp\n";
+    echo "&nbsp;&nbsp;\n";
 }
-
-?>
\ No newline at end of file