functions.php 527 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * SquirrelMail Test Plugin
  4. * @copyright 2006-2025 The SquirrelMail Project Team
  5. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  6. * @version $Id$
  7. * @package plugins
  8. * @subpackage test
  9. */
  10. /**
  11. * Add link to menu at top of content pane
  12. *
  13. * @return void
  14. *
  15. */
  16. function test_menuline_do() {
  17. global $oTemplate, $nbsp;
  18. $output = makeInternalLink('plugins/test/test.php', 'Test', 'right')
  19. . $nbsp . $nbsp;
  20. return array('menuline' => $output);
  21. }