Use <plugin>_info() function if at all possible instead of <plugin>_version()
[squirrelmail.git] / plugins / calendar / setup.php
index 0353361c438775d7fa91efbae20c06771eaf0370..d4ecff5fc8a1316d94c94358869da1d29077bb24 100644 (file)
@@ -1,27 +1,29 @@
 <?php
 
 /**
- * setup.php
+ * Calendar plugin activation script
  *
- * Copyright (c) 2002-2003 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * Originally contrubuted by Michal Szczotka <michal@tuxy.org>
- *
- * init plugin into squirrelmail
- *
- * $Id$ 
+ * @copyright &copy; 2002-2007 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";
 }
-
-?>