fetch('non_breaking_space.tpl'); $output = makeInternalLink('plugins/demo/demo.php', _("Demo"), '') . $nbsp . $nbsp; sq_change_text_domain('squirrelmail'); return array('menuline' => $output); } /** * Inserts an option block in the main SM options page * */ function demo_option_link_do() { global $optpage_blocks; sq_change_text_domain('demo'); $optpage_blocks[] = array( 'name' => _("Demo"), 'url' => sqm_baseuri() . 'plugins/demo/demo.php', 'desc' => _("This is where you would describe what your plugin does."), 'js' => FALSE ); sq_change_text_domain('squirrelmail'); }