Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function onBeforeRender() |
||
17 | { |
||
18 | if (!$this->owner->getProduct()->hasMethod('getHasInventory')) { |
||
19 | return; |
||
20 | } |
||
21 | |||
22 | if (!$this->owner->getProduct()->getHasInventory()) { |
||
23 | return; |
||
24 | } |
||
25 | |||
26 | $this->owner->setAttribute( |
||
27 | 'data-limit', |
||
28 | $this->owner->getProduct()->getNumberAvailable() |
||
29 | ); |
||
68 |