X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Finfo%2Fsetup.php;h=43eda5116c8cc558a63300ddb030a1280cba2f70;hp=359198780bd1dd35d3d78ac2436c088c020401b0;hb=d4e46166df04792c6b939356ea5dfda8e47bba7b;hpb=82d304a0501324b276cabab1870755d5352bd21c diff --git a/plugins/info/setup.php b/plugins/info/setup.php index 35919878..43eda511 100644 --- a/plugins/info/setup.php +++ b/plugins/info/setup.php @@ -1,33 +1,36 @@ + * @copyright © 1999-2009 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ * @package plugins * @subpackage info */ -/** @ignore */ -require_once (SM_PATH . 'plugins/info/functions.php'); - +/** + * Plugin init function + * @access private + */ function squirrelmail_plugin_init_info() { global $squirrelmail_plugin_hooks; $squirrelmail_plugin_hooks['optpage_register_block']['info'] = 'info_opt'; } +/** + * Plugin's block in option page + * @access private + */ function info_opt() { global $optpage_blocks; $optpage_blocks[] = array( 'name' => _("IMAP server information"), 'url' => '../plugins/info/options.php', - 'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the Squirrelmail IMAP commands and your current Squirrelmail configuration. Custom command strings can be used."), + 'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the SquirrelMail IMAP commands and your current SquirrelMail configuration. Custom command strings can be used."), 'js' => false ); } - -?>