Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
22 | public function getShowCase() |
||
23 | { |
||
24 | $criteria = new CDbCriteria(array('limit' => 12)); |
||
25 | $criteria->compare('t.main', 1); |
||
26 | |||
27 | $showcase = new Showcase($criteria); |
||
28 | |||
29 | $showcase->createTabByCondition('Новинки', 't.novelty', 1); |
||
30 | $showcase->createTabByCondition('Лидеры продаж', 't.spec', 1); |
||
31 | $showcase->createTabByCondition('Скидки', 't.discount', 1); |
||
32 | |||
33 | return $showcase; |
||
34 | } |
||
35 | } |