12345678910111213141516171819202122232425 |
- <?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
- *
- * $Id$
- */
- 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";
- }
- ?>
|