utf-8 is already converted by ja_JP extra functions.
[squirrelmail.git] / plugins / calendar / setup.php
CommitLineData
d61a01d4 1<?php
7c67a5e8 2
3/**
4 * setup.php
5 *
76911253 6 * Copyright (c) 2002-2003 The SquirrelMail Project Team
7c67a5e8 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
d61a01d4 8 *
7c67a5e8 9 * Originally contrubuted by Michal Szczotka <michal@tuxy.org>
d61a01d4 10 *
7c67a5e8 11 * init plugin into squirrelmail
d61a01d4 12 *
2c85de8f 13 * $Id$
d61a01d4 14 */
15
d61a01d4 16function squirrelmail_plugin_init_calendar() {
17 global $squirrelmail_plugin_hooks;
18 $squirrelmail_plugin_hooks['menuline']['calendar'] = 'calendar';
19}
20
21function calendar() {
7c67a5e8 22 /* Add Calendar link to upper menu */
d61a01d4 23 displayInternalLink('plugins/calendar/calendar.php',_("Calendar"),'right');
1ba8cd6b 24 echo "&nbsp;&nbsp;\n";
d61a01d4 25}
26
7c67a5e8 27?>