eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway::getBasicNodeDataByRemoteId PHP Method

getBasicNodeDataByRemoteId() abstract public method

Returns an array with basic node data for the node with $remoteId.
abstract public getBasicNodeDataByRemoteId ( mixed $remoteId ) : array
$remoteId mixed
return array
    public abstract function getBasicNodeDataByRemoteId($remoteId);

Usage Example

 /**
  * Returns an array with basic node data for the node with $remoteId
  *
  * @todo optimize
  * @param mixed $remoteId
  *
  * @return array
  */
 public function getBasicNodeDataByRemoteId($remoteId)
 {
     try {
         return $this->innerGateway->getBasicNodeDataByRemoteId($remoteId);
     } catch (DBALException $e) {
         throw new RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new RuntimeException('Database error', 0, $e);
     }
 }
All Usage Examples Of eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway::getBasicNodeDataByRemoteId