diff --git a/Classes/Fusion/Eel/FlowQueryOperations/FilterByReferenceOperation.php b/Classes/Fusion/Eel/FlowQueryOperations/FilterByReferenceOperation.php deleted file mode 100644 index 1719a71..0000000 --- a/Classes/Fusion/Eel/FlowQueryOperations/FilterByReferenceOperation.php +++ /dev/null @@ -1,73 +0,0 @@ -getContext() as $node) { - /** @var Node $node */ - $propertyValue = $node->getProperty($filterByPropertyPath); - if ($nodeReference == $propertyValue || (is_array($propertyValue) && in_array($nodeReference, $propertyValue, false))) { - $filteredNodes[] = $node; - } - } - - $flowQuery->setContext($filteredNodes); - } -} diff --git a/README.md b/README.md index 1820e40..79bfd64 100644 --- a/README.md +++ b/README.md @@ -147,10 +147,6 @@ Configuration options: Filter nodes by properties of type date. -## filterByReference - -Filter nodes by properties of type reference or references. - ## sortRecursiveByIndex Sort nodes by their position in the node tree. Please use with care, as this can become a very expensive operation, if you operate on bigger subtrees.