Don't use 'None' in displayPageHeader() calls
[squirrelmail.git] / plugins / test / functions.php
1 <?php
2
3 /**
4 * SquirrelMail Test Plugin
5 * @copyright &copy; 2006 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 */
18 function 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