eZ\Publish\Core\SignalSlot\SearchService::findContent PHP Метод

findContent() публичный Метод

Finds content objects for the given query.
public findContent ( eZ\Publish\API\Repository\Values\Content\Query $query, array $languageFilter = [], boolean $filterOnUserPermissions = true ) : eZ\Publish\API\Repository\Values\Content\Search\SearchResult
$query eZ\Publish\API\Repository\Values\Content\Query
$languageFilter array Configuration for specifying prioritized languages query will be performed on. Currently supported: array("languages" => array(,..)).
$filterOnUserPermissions boolean if true only the objects which the user is allowed to read are returned.
Результат eZ\Publish\API\Repository\Values\Content\Search\SearchResult
    public function findContent(Query $query, array $languageFilter = array(), $filterOnUserPermissions = true)
    {
        return $this->service->findContent($query, $languageFilter, $filterOnUserPermissions);
    }