squirrelmail/plugins/test/functions.php
2025-01-03 11:47:03 -08:00

27 lines
527 B
PHP

<?php
/**
* SquirrelMail Test Plugin
* @copyright 2006-2025 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id$
* @package plugins
* @subpackage test
*/
/**
* Add link to menu at top of content pane
*
* @return void
*
*/
function test_menuline_do() {
global $oTemplate, $nbsp;
$output = makeInternalLink('plugins/test/test.php', 'Test', 'right')
. $nbsp . $nbsp;
return array('menuline' => $output);
}