eZ\Publish\Core\Search\Common\Slot\SetContentState::receive PHP Method

receive() public method

Receive the given $signal and react on it.
public receive ( eZ\Publish\Core\SignalSlot\Signal $signal )
$signal eZ\Publish\Core\SignalSlot\Signal
    public function receive(Signal $signal)
    {
        if (!$signal instanceof Signal\ObjectStateService\SetContentStateSignal) {
            return;
        }
        $contentInfo = $this->persistenceHandler->contentHandler()->loadContentInfo($signal->contentId);
        $this->searchHandler->indexContent($this->persistenceHandler->contentHandler()->load($contentInfo->id, $contentInfo->currentVersionNo));
        $locations = $this->persistenceHandler->locationHandler()->loadLocationsByContent($contentInfo->id);
        foreach ($locations as $location) {
            $this->searchHandler->indexLocation($location);
        }
    }
SetContentState