game2005api/webapp/mt/Shop.php
aozhiwei 9838fb8d7b 1
2021-12-01 10:15:36 +08:00

27 lines
409 B
PHP

<?php
namespace mt;
use phpcommon;
class Shop {
const OUTSIDE_SHOP = 100;
public static function get($id)
{
return getXVal(self::getMetaList(), $id);
}
protected static function getMetaList()
{
if (!self::$metaList) {
self::$metaList = getMetaTable('shop@shop.php');
}
return self::$metaList;
}
protected static $metaList;
}