* @license PHP License * @package WB * @subpackage base */ /** * Shop * * * @version 0.1.0 * @package WB * @subpackage base * @deprecated in favour of ValueAce */ class WBShop extends WBStdClass { /** * table names */ const TABLE_USER = 'user'; const TABLE_CART = 'shopcart'; const TABLE_CARTITEM = 'shopcartitem'; const TABLE_ARTICLE = 'shoparticle'; const TABLE_ARTICLECLASS = 'shoparticleclass'; const TABLE_VARIATION = 'shopvariation'; const TABLE_ARTICLEVARIATION = 'shoparticlevariation'; const TABLE_MANUFACTURER = 'shopmanufactorer'; }