1 | <?php |
||
24 | abstract class IntegrationAssociationQuery extends CacheableActiveQuery |
||
25 | { |
||
26 | use AuditAttributesTrait, |
||
27 | FieldAttributeTrait, |
||
28 | ElementAttributeTrait, |
||
29 | SiteAttributeTrait; |
||
30 | |||
31 | /** |
||
32 | * @var int|null Sort order |
||
33 | */ |
||
34 | public $sortOrder; |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | public function init() |
||
47 | |||
48 | /** |
||
49 | * @inheritdoc |
||
50 | * return static |
||
51 | */ |
||
52 | public function sortOrder($value) |
||
57 | |||
58 | /** |
||
59 | * @var string|string[]|null |
||
60 | */ |
||
61 | public $object; |
||
62 | |||
63 | /** |
||
64 | * @param string|string[]|null $value |
||
65 | * @return static |
||
66 | */ |
||
67 | public function setObjectId($value) |
||
71 | |||
72 | /** |
||
73 | * @param string|string[]|null $value |
||
74 | * @return static |
||
75 | */ |
||
76 | public function objectId($value) |
||
80 | |||
81 | /** |
||
82 | * @param string|string[]|null $value |
||
83 | * @return static |
||
84 | */ |
||
85 | public function setObject($value) |
||
90 | |||
91 | /** |
||
92 | * @param string|string[]|null $value |
||
93 | * @return static |
||
94 | */ |
||
95 | public function object($value) |
||
99 | |||
100 | /** |
||
101 | * @inheritdoc |
||
102 | */ |
||
103 | protected function fixedOrderColumn(): string |
||
107 | |||
108 | /** |
||
109 | * @param array $config |
||
110 | * @return $this |
||
111 | */ |
||
112 | public function configure(array $config) |
||
121 | |||
122 | /** |
||
123 | * @inheritdoc |
||
124 | * |
||
125 | * @throws QueryAbortedException if it can be determined that there won’t be any results |
||
126 | */ |
||
127 | public function prepare($builder) |
||
141 | |||
142 | /** |
||
143 | * Apply query specific conditions |
||
144 | */ |
||
145 | protected function applyConditions() |
||
167 | } |
||
168 |