Merge pull request #3344 from tractorcow/pulls/3.2/sslist

API SS_Filterable, SS_Limitable and SS_Sortable now explicitly extend SS_List
This commit is contained in:
Sean Harvey 2014-07-30 15:38:07 +12:00
commit bab4a24f4b
4 changed files with 8 additions and 7 deletions

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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.