Neos\ContentRepository\Tests\Functional\Eel\FlowQueryOperations\FindOperationTest::pathAndPropertyNameFilterExamples PHP Метод

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

public pathAndPropertyNameFilterExamples ( ) : array
Результат array
    public function pathAndPropertyNameFilterExamples()
    {
        return ['Absolute path' => ['/sites/example/home', ['/sites/example/home']], 'Absolute path with attribute filter' => ['/sites/example/home/about-us[title *= "Test"], /sites/example/home/products[title *= "Test"]', ['/sites/example/home/about-us']], 'Property name' => ['about-us', ['/sites/example/home/about-us']], 'Multiple property names' => ['about-us, products', ['/sites/example/home/about-us', '/sites/example/home/products']], 'Property name with attribute filter' => ['about-us[title *= "Test"], products[title *= "Test"]', ['/sites/example/home/about-us']]];
    }