Minahito
minah****@users*****
2005年 12月 27日 (火) 19:35:03 JST
Index: xoops2jp/html/kernel/module.php diff -u xoops2jp/html/kernel/module.php:1.2.8.3 xoops2jp/html/kernel/module.php:1.2.8.4 --- xoops2jp/html/kernel/module.php:1.2.8.3 Thu Dec 1 01:22:08 2005 +++ xoops2jp/html/kernel/module.php Tue Dec 27 19:35:02 2005 @@ -1,5 +1,5 @@ <?php -// $Id: module.php,v 1.2.8.3 2005/11/30 16:22:08 minahito Exp $ +// $Id: module.php,v 1.2.8.4 2005/12/27 10:35:02 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -240,6 +240,31 @@ return $this->getVar('version') / 100; } + /** + * @return bool + */ + function hasHelp() + { + $info =& $this->getInfo(); + if (isset($info['help']) && strlen($info['help']) > 0) { + return true; + } + + return false; + } + + /** + * @return string + */ + function getHelp() + { + if ($this->hasHelp()) { + return $this->modinfo['help']; + } + + return null; + } + /**#@+ * For backward compatibility only! * @deprecated