Download the PHP package heyday/model-admin-filter without Composer
On this page you can find all versions of the php package heyday/model-admin-filter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package model-admin-filter
Model Admin Filter for SilverStripe
Custom filters collection for Silverstripe Model Admin GridField.
Installation
For Silverstripe 5
composer require heyday/model-admin-filter
Quick Usage
Extend model admin:
In your model admin, add this function:
getFilteredList
will return filtered list from custom filter.
Also in your model admin, add this function to add custom filter fields:
The example above will add custom filter of dateTimeRange
which is a date time range filter of Created
field.
This filter will display record where Created
dates and times are between selected range.
Common Field Attribute
fieldName
: the DB field which will be filteredfieldType
: current available fields, see Available Filter Fields Type
Available Filter Fields Type
Range filters:
- dateRange
- dateTimeRange
- numericRange
Search by Keyword filters:
- Search By Keyword
dateRange
Filter record by date range of selected date field.
Options:
beginTitle
: custom begin labelendTitle
: custom end label
dateTimeRange
Filter record by date and time range of selected date field.
Options:
beginTitle
: custom begin labelendTitle
: custom end label
numericRange
Filter record by numeric range of selected date field.
Options:
beginTitle
: custom begin labelendTitle
: custom end label
Search By Keyword
Filter record by keyword, add this function in model admin:
Fields To Match: '[DBFieldName]' => '[MatchType]'
. If MatchType
is not PartialMatch
, Exact Match will be assumed.
Options:
title
: custom label
Hide Default Filters
Sometimes we need to hide auto-generated filters, such as $summary_fields
in DataObject
. Add this function in model admin: