We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d53ae4c + 5cb6ce9 commit 05a088eCopy full SHA for 05a088e
src/classes/user/user.php
@@ -50,13 +50,14 @@ public function fields()
50
* @param $FILTER - list of fields user entity to filter result
51
* @return array
52
*/
53
- public function get($SORT, $ORDER, $FILTER)
+ public function get($SORT, $ORDER, $FILTER, $OFFSET)
54
{
55
$result = $this->client->call('user.get',
56
array(
57
'SORT' => $SORT,
58
'ORDER' => $ORDER,
59
- 'FILTER'=> $FILTER)
+ 'FILTER'=> $FILTER,
60
+ 'start' => $OFFSET)
61
);
62
return $result;
63
}
0 commit comments