20 lines
408 B
PHP
20 lines
408 B
PHP
<?php
|
|
namespace mt;
|
|
|
|
|
|
class DressAttribute {
|
|
public static function get($id)
|
|
{
|
|
return getXVal(self::getMetaList(), $id);
|
|
}
|
|
|
|
protected static function getMetaList()
|
|
{
|
|
if (!self::$metaList) {
|
|
self::$metaList = getMetaTable('dressAttribute@dressAttribute.php');
|
|
}
|
|
return self::$metaList;
|
|
}
|
|
|
|
protected static $metaList;
|
|
} |