Interface OrderListGeneratorInterface
Interface OrderListGeneratorInterface
Methods summary
public
OrderListItemCollection
|
#
getOrderListByConditions( array $conditions = array(), IntType $startIndex = null, IntType $maxCount = null, StringType $orderBy = null )
Returns an order list item collection.
Returns an order list item collection.
Parameters
- $conditions
Associative array which holds the CI_DB_query_builder conditions (default empty
array).
- $startIndex
- The start index of the wanted array to be returned (default = null).
- $maxCount
- Maximum amount of items which should be returned (default = null).
- $orderBy
- A string which defines how the items should be ordered (default = null).
Returns
|
public
OrderListItemCollection
|
#
getOrderListByKeyword( StringType $keyword, IntType $startIndex = null, IntType $maxCount = null, StringType $orderBy = null )
Filters records by a single keyword string.
Filters records by a single keyword string.
Parameters
- $keyword
- Keyword string to be used for searching in order records.
- $startIndex
- The start index of the wanted array to be returned (default = null).
- $maxCount
- Maximum amount of items which should be returned (default = null).
- $orderBy
- A string which defines how the items should be ordered (default = null).
Returns
|