1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Calendar plugin activation script
- *
- * @copyright © 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() {
- displayInternalLink('plugins/calendar/calendar.php',_("Calendar"),'right');
- echo " \n";
- }
|