Minahito
minah****@users*****
2006年 5月 15日 (月) 15:56:47 JST
Index: xoops2jp/html/kernel/configcategory.php diff -u xoops2jp/html/kernel/configcategory.php:1.2 xoops2jp/html/kernel/configcategory.php:1.2.8.1 --- xoops2jp/html/kernel/configcategory.php:1.2 Fri Mar 18 21:52:14 2005 +++ xoops2jp/html/kernel/configcategory.php Mon May 15 15:56:47 2006 @@ -1,5 +1,5 @@ <?php -// $Id: configcategory.php,v 1.2 2005/03/18 12:52:14 onokazu Exp $ +// $Id: configcategory.php,v 1.2.8.1 2006/05/15 06:56:47 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -64,6 +64,14 @@ $this->initVar('confcat_name', XOBJ_DTYPE_OTHER, null); $this->initVar('confcat_order', XOBJ_DTYPE_INT, 0); } + + /** + * Get a constract of name + */ + function getName() + { + return defined($this->get('confcat_name')) ? constant($this->get('confcat_name')) : $this->get('confcat_name'); + } }