| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Lines | 16 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | View Code Duplication | public function onSetContentState(SetContentStateEvent $event) |
|
| 19 | { |
||
| 20 | $contentInfo = $this->persistenceHandler->contentHandler()->loadContentInfo($event->getContentInfo()->id); |
||
| 21 | |||
| 22 | $this->searchHandler->indexContent( |
||
| 23 | $this->persistenceHandler->contentHandler()->load( |
||
| 24 | $contentInfo->id, |
||
| 25 | $contentInfo->currentVersionNo |
||
| 26 | ) |
||
| 27 | ); |
||
| 28 | |||
| 29 | $locations = $this->persistenceHandler->locationHandler()->loadLocationsByContent($contentInfo->id); |
||
| 30 | foreach ($locations as $location) { |
||
| 31 | $this->searchHandler->indexLocation($location); |
||
| 32 | } |
||
| 33 | } |
||
| 34 | } |