123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * setup.php
- *
- * Copyright (c) 2002-2004 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$
- * @package plugins
- * @subpackage calendar
- */
- /**
- * Initialize the plugin
- * @return void
- */
- function squirrelmail_plugin_init_calendar() {
- global $squirrelmail_plugin_hooks;
- $squirrelmail_plugin_hooks['menuline']['calendar'] = 'calendar';
- }
- function calendar() {
- /* Add Calendar link to upper menu */
- displayInternalLink('plugins/calendar/calendar.php',_("Calendar"),'right');
- echo " \n";
- }
- ?>
|