Exemplo n.º 1
0
 /**
  * Loads a tag info object from its remote ID.
  *
  * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If the specified tag is not found
  *
  * @param string $remoteId
  *
  * @return \Netgen\TagsBundle\SPI\Persistence\Tags\TagInfo
  */
 public function loadTagInfoByRemoteId($remoteId)
 {
     $row = $this->gateway->getBasicTagDataByRemoteId($remoteId);
     return $this->mapper->createTagInfoFromRow($row);
 }