123456789101112131415161718192021222324252627 |
- <?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);
- }
|