stepanets / kww-domstorlib-c
此包的最新版本(1.5.5)没有提供许可证信息。
1.5.5
2017-10-31 06:04 UTC
Requires
- php: >=5.1.0 || >=7.0
README
使用
首先创建domstor构建器
$builder = new Domstor_Builder();
然后构建 $domstor 对象,您必须定义两个参数 org_id 和 location_id
$domstor = $builder->build(array( 'org_id' => 1, // Organisation id 'location_id' => 2004, // Location id ));
获取 $list 对象。您必须通过请求或其他方式指定 $page 页码
$list = $domstor->getList($object, $action, $page);