The copyright symbol isn't really needed since the word "copyright" is there. Also...
[squirrelmail.git] / plugins / test / functions.php
... / ...
CommitLineData
1<?php
2
3/**
4 * SquirrelMail Test Plugin
5 * @copyright 2006-2009 The SquirrelMail Project Team
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @version $Id$
8 * @package plugins
9 * @subpackage test
10 */
11
12/**
13 * Add link to menu at top of content pane
14 *
15 * @return void
16 *
17 */
18function test_menuline_do() {
19
20 global $oTemplate, $nbsp;
21 $output = makeInternalLink('plugins/test/test.php', 'Test', 'right')
22 . $nbsp . $nbsp;
23 return array('menuline' => $output);
24
25}
26
27