mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
API SS_Filterable, SS_Limitable and SS_Sortable now explicitly extend SS_List
This commit is contained in:
parent
7c4294b782
commit
26a0e91553
@ -11,6 +11,7 @@
|
|||||||
* HtmlEditorField no longer substitutes `<blockquote />` for indented text
|
* HtmlEditorField no longer substitutes `<blockquote />` for indented text
|
||||||
* ClassInfo::dataClassesFor now returns classes which should have tables, regardless of whether those
|
* ClassInfo::dataClassesFor now returns classes which should have tables, regardless of whether those
|
||||||
tables actually exist.
|
tables actually exist.
|
||||||
|
* SS_Filterable, SS_Limitable and SS_Sortable now explicitly extend SS_List
|
||||||
|
|
||||||
### CMS
|
### CMS
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* @package framework
|
* @package framework
|
||||||
* @subpackage model
|
* @subpackage model
|
||||||
*/
|
*/
|
||||||
interface SS_Filterable {
|
interface SS_Filterable extends SS_List {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE if the list can be filtered by a given field expression.
|
* Returns TRUE if the list can be filtered by a given field expression.
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* @package framework
|
* @package framework
|
||||||
* @subpackage model
|
* @subpackage model
|
||||||
*/
|
*/
|
||||||
interface SS_Limitable {
|
interface SS_Limitable extends SS_List {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a new instance of this list where no more than $limit records are included.
|
* Returns a new instance of this list where no more than $limit records are included.
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
* @package framework
|
* @package framework
|
||||||
* @subpackage model
|
* @subpackage model
|
||||||
*/
|
*/
|
||||||
interface SS_Sortable {
|
interface SS_Sortable extends SS_List {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns TRUE if the list can be sorted by a field.
|
* Returns TRUE if the list can be sorted by a field.
|
||||||
|
Loading…
Reference in New Issue
Block a user