stepanets/kww-domstorlib-c

There is no license information available for the latest version (1.5.5) of this package.

1.5.5 2017-10-31 06:04 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:29:22 UTC


README

Using

First creates domstor builder:

$builder = new Domstor_Builder();

Then build $domstor object, you must define two parameters org_id and location_id:

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

Get $list object. You must specify $page number by getting it through request or some other way

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