Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
49 | public function save() |
||
50 | { |
||
51 | $result = $this->getClient()->save(); |
||
52 | $item = $this->getView()->item; |
||
53 | |||
54 | if( $item->getId() !== null ) |
||
55 | { |
||
56 | $idtag = 'product-' . $item->getId(); |
||
57 | $this->getContext()->getCache()->deleteByTags( array( 'product', $idtag ) ); |
||
58 | } |
||
59 | |||
60 | return $result; |
||
61 | } |
||
62 | } |
||
63 |