Minahito
minah****@users*****
2006年 6月 20日 (火) 19:53:52 JST
Index: xoops2jp/html/modules/base/kernel/object.php diff -u xoops2jp/html/modules/base/kernel/object.php:1.1.2.4 xoops2jp/html/modules/base/kernel/object.php:1.1.2.5 --- xoops2jp/html/modules/base/kernel/object.php:1.1.2.4 Tue Mar 28 22:30:15 2006 +++ xoops2jp/html/modules/base/kernel/object.php Tue Jun 20 19:53:52 2006 @@ -1,5 +1,5 @@ <?php -// $Id: object.php,v 1.1.2.4 2006/03/28 13:30:15 minahito Exp $ +// $Id: object.php,v 1.1.2.5 2006/06/20 10:53:52 minahito Exp $ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -155,6 +155,16 @@ return $value; } + + function getTypeInformations() + { + $ret = array(); + foreach (array_keys($this->mVars) as $key) { + $ret[$key] = $this->mVars[$key]['data_type']; + } + + return $ret; + } } ?> \ No newline at end of file