Seriously? The variable is named as an array and initialized as a string? Well, I...
[squirrelmail.git] / plugins / test / functions.php
CommitLineData
3d708401 1<?php
2
3/**
4 * SquirrelMail Test Plugin
22387c8d 5 * @copyright 2006-2017 The SquirrelMail Project Team
3d708401 6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
3656ccef 7 * @version $Id$
3d708401 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
551c7b53 20 global $oTemplate, $nbsp;
3d708401 21 $output = makeInternalLink('plugins/test/test.php', 'Test', 'right')
22 . $nbsp . $nbsp;
23 return array('menuline' => $output);
24
25}
26
27