checkitsedo / news-filter
Filter news by date, categories and tags
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 12
Type:typo3-cms-extension
Requires
- georgringer/news: ^6.3|| ^8 || ^10 || ^11
- typo3/cms-core: ^8.7 || ^9.5 || ^10.4 || ^11.5
This package is auto-updated.
Last update: 2024-11-06 11:16:45 UTC
README
This extension makes it possible to filter news in the frontend by the following properties:
- date from & to
- categories
- tags
This extension has been sponsored by University Basel
Requirements
- TYPO3 8.7 - 9.5 (7 should work as well)
- news 7.x
Usage
- Install the extension just as any other extension. Either use the Extension Manager or composer and
composer require georgringer/news-filter
. - Select the action "list" in the news plugin and active the enable checkbox
- Select page of categories & tags.
Templating
Add the following part to your List.html
:
<f:form action="list" object="{extendedVariables.searchDemand}" name="search" class="form-horizontal">
<fieldset>
<div class="form-group">
<f:for each="{extendedVariables.categories}" as="category">
<div class="checkbox">
<label>
<f:form.checkbox property="filteredCategories" value="{category.uid}"/>
{category.title}
</label>
</div>
</f:for>
</div>
<div class="form-group">
<f:for each="{extendedVariables.tags}" as="tag">
<div class="tag">
<label>
<f:form.checkbox property="filteredTags" value="{tag.uid}"/>
{tag.title}
</label>
</div>
</f:for>
</div>
<div class="form-group">
<label for="fromDate" class="col-sm-2 control-label">Date from</label>
<div class="col-sm-10">
<f:form.textfield type="date" class="form-control" id="fromDate" property="fromDate"/>
</div>
</div>
<div class="form-group">
<label for="toDate" class="col-sm-2 control-label">Date to</label>
<div class="col-sm-10">
<f:form.textfield type="date" class="form-control" id="toDate" property="toDate"/>
</div>
</div>
<f:form.submit value="submit" class="btn btn-primary"/>
</fieldset>
</f:form>