eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway::updatePathIdentificationString PHP Méthode

updatePathIdentificationString() abstract public méthode

Updates path identification string for given $locationId.
abstract public updatePathIdentificationString ( mixed $locationId, mixed $parentLocationId, string $text )
$locationId mixed
$parentLocationId mixed
$text string
    public abstract function updatePathIdentificationString($locationId, $parentLocationId, $text);

Usage Example

 /**
  * Updates path identification string for given $locationId.
  *
  * @param mixed $locationId
  * @param mixed $parentLocationId
  * @param string $text
  *
  * @return void
  */
 public function updatePathIdentificationString($locationId, $parentLocationId, $text)
 {
     try {
         return $this->innerGateway->updatePathIdentificationString($locationId, $parentLocationId, $text);
     } 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::updatePathIdentificationString