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