Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

User Criterion

The UserCriterion Activity Log Criterion matches log groups that have an activity by one of the users given by their IDs.

Argument

  • ids - list of user IDs

Example

1
2
3
4
5
use Ibexa\Contracts\ActivityLog\Values\ActivityLog as ActivityLog;

$query = new ActivityLog\Query([
    new ActivityLog\Criterion\UserCriterion([10, 14]),
]);