Initial import from trunk/plugins
[squirrelmail.git] / plugins / test / functions.php
CommitLineData
3d708401 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: setup.php 11080 2006-04-23 19:00:45Z tokul $
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;
21 $nbsp = $oTemplate->fetch('non_breaking_space.tpl');
22 $output = makeInternalLink('plugins/test/test.php', 'Test', 'right')
23 . $nbsp . $nbsp;
24 return array('menuline' => $output);
25
26}
27
28