app = $app; } /** * 工厂方法 * @todo 只支持淘宝类型店铺 * * @return void * @author */ public static function createFactory($shop_type, $business_type='zx') { switch ($shop_type) { case 'taobao': if ($business_type == 'fx') { return kernel::single('tbo2o_shop_service_tbfx'); } else { return kernel::single('tbo2o_shop_service_taobao'); } break; default: return false; break; } } }