├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .php-cs-fixer.php ├── .php-version ├── Classes ├── Controller │ └── SearchController.php ├── Service │ ├── ServiceProviderInterface.php │ └── SolrServiceProvider.php ├── Utility │ ├── ArrayUtility.php │ ├── FrontendUtility.php │ ├── LoggerUtility.php │ ├── SettingsUtility.php │ └── UpgradeUtility.php └── ViewHelpers │ ├── Data │ ├── ArrayFirstViewHelper.php │ ├── IsArrayViewHelper.php │ ├── NewArrayViewHelper.php │ ├── SplitViewHelper.php │ ├── TransposeViewHelper.php │ └── ValueForKeyViewHelper.php │ ├── Find │ ├── FacetIsActiveViewHelper.php │ ├── FacetLinkArgumentsViewHelper.php │ ├── HighlightFieldViewHelper.php │ ├── LocalizedFacetDataViewHelper.php │ ├── PageListViewHelper.php │ ├── PageNumberForResultNumberViewHelper.php │ ├── PathExistsViewHelper.php │ └── SelectOptionsForFacetViewHelper.php │ ├── Format │ ├── CSVLineViewHelper.php │ ├── FieldContentViewHelper.php │ ├── JoinViewHelper.php │ ├── JsonViewHelper.php │ ├── RegexpViewHelper.php │ ├── SolrEscapeViewHelper.php │ ├── StripViewHelper.php │ └── XMLViewHelper.php │ ├── LinkedData │ ├── ContainerViewHelper.php │ ├── ItemViewHelper.php │ └── Renderer │ │ ├── AbstractRenderer.php │ │ ├── JSONLDRenderer.php │ │ ├── RDFRenderer.php │ │ ├── RendererInterface.php │ │ └── TurtleRenderer.php │ ├── Logic │ ├── AndViewHelper.php │ ├── NotViewHelper.php │ └── OrViewHelper.php │ ├── Page │ ├── LinkCSSViewHelper.php │ ├── ScriptViewHelper.php │ └── TitleViewHelper.php │ └── Solr │ └── CountFromSolrViewHelper.php ├── Configuration ├── Services.yaml ├── TCA │ └── Overrides │ │ ├── sys_template.php │ │ └── tt_content.php ├── TSconfig │ └── ContentElementWizard.tsconfig └── TypoScript │ ├── constants.typoscript │ └── setup.typoscript ├── LICENSE ├── README.md ├── Resources ├── Private │ ├── CSS │ │ └── find.css │ ├── JavaScript │ │ └── find.js │ ├── Language │ │ ├── de.locallang-facets.xlf │ │ ├── de.locallang-fields.xlf │ │ ├── de.locallang-form.xlf │ │ ├── de.locallang.xlf │ │ ├── de.locallang_be.xlf │ │ ├── locallang-facets.xlf │ │ ├── locallang-fields.xlf │ │ ├── locallang-form.xlf │ │ ├── locallang.xlf │ │ └── locallang_be.xlf │ ├── Layouts │ │ └── Default.html │ ├── Partials │ │ ├── Components │ │ │ ├── DetailResultPager.html │ │ │ ├── QueryString.html │ │ │ └── ResultCount.html │ │ ├── Display │ │ │ ├── DLField.html │ │ │ ├── DetailLink.html │ │ │ ├── Field │ │ │ │ ├── Content.html │ │ │ │ ├── General.html │ │ │ │ ├── Inline.html │ │ │ │ └── List.html │ │ │ └── Result.html │ │ ├── Facets │ │ │ ├── Facet.html │ │ │ ├── Facet │ │ │ │ ├── Histogram.html │ │ │ │ ├── List.html │ │ │ │ ├── List │ │ │ │ │ ├── ActiveFacets.html │ │ │ │ │ ├── Autocomplete.html │ │ │ │ │ └── Item.html │ │ │ │ ├── Map.html │ │ │ │ └── Tabs.html │ │ │ └── Facets.html │ │ ├── Form │ │ │ ├── Fields │ │ │ │ ├── Hidden.html │ │ │ │ ├── Radio.html │ │ │ │ ├── Range.html │ │ │ │ ├── Select.html │ │ │ │ ├── SelectFacet.html │ │ │ │ └── Text.html │ │ │ ├── Form.html │ │ │ └── QueryError.html │ │ ├── Formats │ │ │ ├── json-all.data │ │ │ ├── json-solr-results.data │ │ │ └── raw-solr-response.data │ │ ├── Page │ │ │ ├── CSS.html │ │ │ ├── JavaScript.html │ │ │ └── Standard.html │ │ └── Pager │ │ │ ├── ListPager.html │ │ │ └── ViewHelperTest.html │ └── Templates │ │ └── Search │ │ ├── Detail.data │ │ ├── Detail.html │ │ ├── Index.data │ │ ├── Index.html │ │ └── Suggest.data └── Public │ ├── Images │ ├── cancel-circled.svg │ ├── cancel.svg │ ├── left-dir.svg │ ├── left-open.svg │ ├── level-up.svg │ ├── pointer-0.svg │ ├── pointer-180.svg │ ├── pointer-270.svg │ ├── pointer-90.svg │ ├── popup.svg │ ├── resize-full.svg │ ├── resize-small.svg │ ├── right-dir.svg │ └── right-open.svg │ └── JavaScript │ ├── find.css │ └── find.js ├── Tests ├── Unit │ ├── Utility │ │ └── UpgradeUtilityTest.php │ └── ViewHelpers │ │ ├── Data │ │ ├── ArrayFirstViewHelperTest.php │ │ ├── IsArrayViewHelperTest.php │ │ ├── NewArrayViewHelperTest.php │ │ ├── SplitViewHelperTest.php │ │ ├── TransposeViewHelperTest.php │ │ └── ValueForKeyViewHelperTest.php │ │ ├── Find │ │ ├── FacetIsActiveViewHelperTest.php │ │ ├── FacetLinkArgumentsViewHelperTest.php │ │ ├── PageNumberForResultNumberViewHelperTest.php │ │ └── SelectOptionsForFacetViewHelperTest.php │ │ ├── Format │ │ ├── CSVLineViewHelperTest.php │ │ ├── JoinViewHelperTest.php │ │ ├── RegexpViewHelperTest.php │ │ ├── StripViewHelperTest.php │ │ └── XMLViewHelperTest.php │ │ ├── LinkedData │ │ └── ItemViewHelperTest.php │ │ ├── Logic │ │ ├── AndViewHelperTest.php │ │ ├── NotViewHelperTest.php │ │ └── OrViewHelperTest.php │ │ └── MockRenderingContextTrait.php └── phpunit.xml ├── UPGRADING.md ├── composer.json ├── ext_emconf.php ├── ext_icon.gif ├── ext_localconf.php ├── package.json ├── rector.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.php-version: -------------------------------------------------------------------------------- 1 | 8.2 2 | -------------------------------------------------------------------------------- /Classes/Controller/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Controller/SearchController.php -------------------------------------------------------------------------------- /Classes/Service/ServiceProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Service/ServiceProviderInterface.php -------------------------------------------------------------------------------- /Classes/Service/SolrServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Service/SolrServiceProvider.php -------------------------------------------------------------------------------- /Classes/Utility/ArrayUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Utility/ArrayUtility.php -------------------------------------------------------------------------------- /Classes/Utility/FrontendUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Utility/FrontendUtility.php -------------------------------------------------------------------------------- /Classes/Utility/LoggerUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Utility/LoggerUtility.php -------------------------------------------------------------------------------- /Classes/Utility/SettingsUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Utility/SettingsUtility.php -------------------------------------------------------------------------------- /Classes/Utility/UpgradeUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/Utility/UpgradeUtility.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/ArrayFirstViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/ArrayFirstViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/IsArrayViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/IsArrayViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/NewArrayViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/NewArrayViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/SplitViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/SplitViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/TransposeViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/TransposeViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Data/ValueForKeyViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Data/ValueForKeyViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/FacetIsActiveViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/FacetIsActiveViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/FacetLinkArgumentsViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/FacetLinkArgumentsViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/HighlightFieldViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/HighlightFieldViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/LocalizedFacetDataViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/LocalizedFacetDataViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/PageListViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/PageListViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/PageNumberForResultNumberViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/PageNumberForResultNumberViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/PathExistsViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/PathExistsViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Find/SelectOptionsForFacetViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Find/SelectOptionsForFacetViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/CSVLineViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/CSVLineViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/FieldContentViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/FieldContentViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/JoinViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/JoinViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/JsonViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/JsonViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/RegexpViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/RegexpViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/SolrEscapeViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/SolrEscapeViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/StripViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/StripViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Format/XMLViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Format/XMLViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/ContainerViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/ContainerViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/ItemViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/ItemViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/Renderer/AbstractRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/Renderer/AbstractRenderer.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/Renderer/JSONLDRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/Renderer/JSONLDRenderer.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/Renderer/RDFRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/Renderer/RDFRenderer.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/Renderer/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/Renderer/RendererInterface.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/LinkedData/Renderer/TurtleRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/LinkedData/Renderer/TurtleRenderer.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Logic/AndViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Logic/AndViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Logic/NotViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Logic/NotViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Logic/OrViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Logic/OrViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Page/LinkCSSViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Page/LinkCSSViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Page/ScriptViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Page/ScriptViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Page/TitleViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Page/TitleViewHelper.php -------------------------------------------------------------------------------- /Classes/ViewHelpers/Solr/CountFromSolrViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Classes/ViewHelpers/Solr/CountFromSolrViewHelper.php -------------------------------------------------------------------------------- /Configuration/Services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/Services.yaml -------------------------------------------------------------------------------- /Configuration/TCA/Overrides/sys_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/TCA/Overrides/sys_template.php -------------------------------------------------------------------------------- /Configuration/TCA/Overrides/tt_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/TCA/Overrides/tt_content.php -------------------------------------------------------------------------------- /Configuration/TSconfig/ContentElementWizard.tsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/TSconfig/ContentElementWizard.tsconfig -------------------------------------------------------------------------------- /Configuration/TypoScript/constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/TypoScript/constants.typoscript -------------------------------------------------------------------------------- /Configuration/TypoScript/setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Configuration/TypoScript/setup.typoscript -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Private/CSS/find.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/CSS/find.css -------------------------------------------------------------------------------- /Resources/Private/JavaScript/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/JavaScript/find.js -------------------------------------------------------------------------------- /Resources/Private/Language/de.locallang-facets.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/de.locallang-facets.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/de.locallang-fields.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/de.locallang-fields.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/de.locallang-form.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/de.locallang-form.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/de.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/de.locallang.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/de.locallang_be.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/de.locallang_be.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/locallang-facets.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/locallang-facets.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/locallang-fields.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/locallang-fields.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/locallang-form.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/locallang-form.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/locallang.xlf -------------------------------------------------------------------------------- /Resources/Private/Language/locallang_be.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Language/locallang_be.xlf -------------------------------------------------------------------------------- /Resources/Private/Layouts/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Layouts/Default.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Components/DetailResultPager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Components/DetailResultPager.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Components/QueryString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Components/QueryString.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Components/ResultCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Components/ResultCount.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/DLField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/DLField.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/DetailLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/DetailLink.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/Field/Content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/Field/Content.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/Field/General.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/Field/General.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/Field/Inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/Field/Inline.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/Field/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/Field/List.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Display/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Display/Result.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/Histogram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/Histogram.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/List.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/List/ActiveFacets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/List/ActiveFacets.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/List/Autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/List/Autocomplete.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/List/Item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/List/Item.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/Map.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facet/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facet/Tabs.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Facets/Facets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Facets/Facets.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/Hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/Hidden.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/Radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/Radio.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/Range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/Range.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/Select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/Select.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/SelectFacet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/SelectFacet.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Fields/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Fields/Text.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/Form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/Form.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Form/QueryError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Form/QueryError.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Formats/json-all.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/Private/Partials/Formats/json-solr-results.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/Private/Partials/Formats/raw-solr-response.data: -------------------------------------------------------------------------------- 1 | {results.response.body -> f:format.raw()} -------------------------------------------------------------------------------- /Resources/Private/Partials/Page/CSS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Page/CSS.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Page/JavaScript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Page/JavaScript.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Page/Standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Page/Standard.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Pager/ListPager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Pager/ListPager.html -------------------------------------------------------------------------------- /Resources/Private/Partials/Pager/ViewHelperTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Partials/Pager/ViewHelperTest.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Search/Detail.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Templates/Search/Detail.data -------------------------------------------------------------------------------- /Resources/Private/Templates/Search/Detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Templates/Search/Detail.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Search/Index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Templates/Search/Index.data -------------------------------------------------------------------------------- /Resources/Private/Templates/Search/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Templates/Search/Index.html -------------------------------------------------------------------------------- /Resources/Private/Templates/Search/Suggest.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Private/Templates/Search/Suggest.data -------------------------------------------------------------------------------- /Resources/Public/Images/cancel-circled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/cancel-circled.svg -------------------------------------------------------------------------------- /Resources/Public/Images/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/cancel.svg -------------------------------------------------------------------------------- /Resources/Public/Images/left-dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/left-dir.svg -------------------------------------------------------------------------------- /Resources/Public/Images/left-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/left-open.svg -------------------------------------------------------------------------------- /Resources/Public/Images/level-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/level-up.svg -------------------------------------------------------------------------------- /Resources/Public/Images/pointer-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/pointer-0.svg -------------------------------------------------------------------------------- /Resources/Public/Images/pointer-180.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/pointer-180.svg -------------------------------------------------------------------------------- /Resources/Public/Images/pointer-270.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/pointer-270.svg -------------------------------------------------------------------------------- /Resources/Public/Images/pointer-90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/pointer-90.svg -------------------------------------------------------------------------------- /Resources/Public/Images/popup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/popup.svg -------------------------------------------------------------------------------- /Resources/Public/Images/resize-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/resize-full.svg -------------------------------------------------------------------------------- /Resources/Public/Images/resize-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/resize-small.svg -------------------------------------------------------------------------------- /Resources/Public/Images/right-dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/right-dir.svg -------------------------------------------------------------------------------- /Resources/Public/Images/right-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/Images/right-open.svg -------------------------------------------------------------------------------- /Resources/Public/JavaScript/find.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/JavaScript/find.css -------------------------------------------------------------------------------- /Resources/Public/JavaScript/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Resources/Public/JavaScript/find.js -------------------------------------------------------------------------------- /Tests/Unit/Utility/UpgradeUtilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/Utility/UpgradeUtilityTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/ArrayFirstViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/ArrayFirstViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/IsArrayViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/IsArrayViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/NewArrayViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/NewArrayViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/SplitViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/SplitViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/TransposeViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/TransposeViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Data/ValueForKeyViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Data/ValueForKeyViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Find/FacetIsActiveViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Find/FacetIsActiveViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Find/FacetLinkArgumentsViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Find/FacetLinkArgumentsViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Find/PageNumberForResultNumberViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Find/PageNumberForResultNumberViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Find/SelectOptionsForFacetViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Find/SelectOptionsForFacetViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Format/CSVLineViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Format/CSVLineViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Format/JoinViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Format/JoinViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Format/RegexpViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Format/RegexpViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Format/StripViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Format/StripViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Format/XMLViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Format/XMLViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/LinkedData/ItemViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/LinkedData/ItemViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Logic/AndViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Logic/AndViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Logic/NotViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Logic/NotViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/Logic/OrViewHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/Logic/OrViewHelperTest.php -------------------------------------------------------------------------------- /Tests/Unit/ViewHelpers/MockRenderingContextTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/Unit/ViewHelpers/MockRenderingContextTrait.php -------------------------------------------------------------------------------- /Tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/Tests/phpunit.xml -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/composer.json -------------------------------------------------------------------------------- /ext_emconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/ext_emconf.php -------------------------------------------------------------------------------- /ext_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/ext_icon.gif -------------------------------------------------------------------------------- /ext_localconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/ext_localconf.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/package.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/rector.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subugoe/typo3-find/HEAD/vite.config.js --------------------------------------------------------------------------------