forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTokenAssignableUsers.php
More file actions
80 lines (70 loc) · 1.67 KB
/
TokenAssignableUsers.php
File metadata and controls
80 lines (70 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
namespace ProcessMaker\Models;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
/**
* Process events relationship
*/
class TokenAssignableUsers extends Relation
{
/**
* @var User[]
*/
private $models = [];
/**
* Set the base constraints on the relation query.
*
* @return void
*/
public function addConstraints()
{
//No Constraints
}
/**
* Set the constraints for an eager load of the relation.
*
* @param array $models
* @return void
*/
public function addEagerConstraints(array $models)
{
$this->models = $models;
}
/**
* Get the results of the relationship.
*
* @return mixed
*/
public function getResults()
{
$ids = $this->parent->process->getAssignableUsers($this->element_id);
return User::whereIn('id', $ids)->get();
}
/**
* Initialize the relation on a set of models.
*
* @param array $models
* @param string $relation
* @return array
*/
public function initRelation(array $models, $relation)
{
return $models;
}
/**
* Match the eagerly loaded results to their parents.
*
* @param array $models
* @param Collection $results
* @param string $relation
* @return array
*/
public function match(array $models, Collection $results, $relation)
{
foreach ($models as $model) {
$ids = $model->process->getAssignableUsers($model->element_id);
$model->setRelation($relation, collect($ids));
}
return $models;
}
}