stepanets/kww-domstorlib-c

此包的最新版本(1.5.5)没有提供许可证信息。

1.5.5 2017-10-31 06:04 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:42:08 UTC


README

使用

首先创建domstor构建器

$builder = new Domstor_Builder();

然后构建 $domstor 对象,您必须定义两个参数 org_idlocation_id

$domstor = $builder->build(array(
    'org_id' => 1,          // Organisation id
    'location_id' => 2004,  // Location id
));

获取 $list 对象。您必须通过请求或其他方式指定 $page 页码

$list = $domstor->getList($object, $action, $page);