Sulu\Component\PHPCR\SessionManager\SessionManagerInterface::getContentPath PHP Method

getContentPath() public method

Returns the content path for given webspace.
public getContentPath ( string $webspaceKey ) : string
$webspaceKey string
return string
    public function getContentPath($webspaceKey);

Usage Example

Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function execute($webspaceKey, $locales, ContentQueryBuilderInterface $contentQueryBuilder, $flat = true, $depth = -1, $limit = null, $offset = null, $moveUp = false)
 {
     if ($this->stopwatch) {
         $this->stopwatch->start('ContentQuery::execute.build-query');
     }
     list($sql2, $fields) = $contentQueryBuilder->build($webspaceKey, $locales);
     if ($this->stopwatch) {
         $this->stopwatch->stop('ContentQuery::execute.build-query');
         $this->stopwatch->start('ContentQuery::execute.execute-query');
     }
     $query = $this->createSql2Query($sql2, $limit, $offset);
     $queryResult = $query->execute();
     if ($this->stopwatch) {
         $this->stopwatch->stop('ContentQuery::execute.execute-query');
         $this->stopwatch->start('ContentQuery::execute.preload-nodes.get-paths');
     }
     // this preloads all node which should are selected in the statement before
     // prevent the system to load each node individual
     $rootDepth = substr_count($this->sessionManager->getContentPath($webspaceKey), '/');
     $paths = [];
     /** @var Row $row */
     foreach ($queryResult as $row) {
         $pageDepth = substr_count($row->getPath('page'), '/') - $rootDepth;
         if ($depth === null || $depth < 0 || $depth > 0 && $pageDepth <= $depth) {
             $paths[] = $row->getPath('page');
         }
     }
     if ($this->stopwatch) {
         $this->stopwatch->stop('ContentQuery::execute.preload-nodes.get-paths');
         $this->stopwatch->start('ContentQuery::execute.preload-nodes.execute');
     }
     $this->sessionManager->getSession()->getNodes($paths);
     if ($this->stopwatch) {
         $this->stopwatch->stop('ContentQuery::execute.preload-nodes.execute');
         $this->stopwatch->start('ContentQuery::execute.rowsToList');
     }
     $result = $this->contentMapper->convertQueryResultToArray($queryResult, $webspaceKey, $locales, $fields, $depth, $contentQueryBuilder->getPublished());
     if ($this->stopwatch) {
         $this->stopwatch->stop('ContentQuery::execute.rowsToList');
     }
     if (!$flat) {
         if ($this->stopwatch) {
             $this->stopwatch->start('ContentQuery::execute.build-tree');
         }
         $converter = new ListToTreeConverter($moveUp);
         $result = $converter->convert($result);
         if ($this->stopwatch) {
             $this->stopwatch->stop('ContentQuery::execute.build-tree');
         }
     }
     return $result;
 }
All Usage Examples Of Sulu\Component\PHPCR\SessionManager\SessionManagerInterface::getContentPath