Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function run() |
||
14 | { |
||
15 | if (($position = AdPosition::findOne(['slug' => $this->slug, 'status' => AdPosition::STATUS_ACTIVE])) == null) { |
||
16 | return []; |
||
17 | } |
||
18 | return Ad::find()->orderBy('order') |
||
19 | ->where( |
||
20 | [ |
||
21 | 'position_id' => $position->id, |
||
22 | 'status' => Ad::STATUS_ACTIVE |
||
23 | ] |
||
24 | )->andWhere(['<=', 'available_from', time()]) |
||
25 | ->andWhere(['>', 'available_to', time()]) |
||
26 | ->all(); |
||
27 | } |
||
28 | } |
||
29 |