2011-04-19 09:03:23 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* An interface that a class can implement to be treated as a list container.
|
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2011-04-19 09:03:23 +02:00
|
|
|
* @subpackage model
|
|
|
|
*/
|
|
|
|
interface SS_List extends ArrayAccess, Countable, IteratorAggregate {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all the items in the list in an array.
|
|
|
|
*
|
|
|
|
* @return arary
|
|
|
|
*/
|
|
|
|
public function toArray();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the contents of the list as an array of maps.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function toNestedArray();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an item to the list, making no guarantees about where it will
|
|
|
|
* appear.
|
|
|
|
*
|
|
|
|
* @param mixed $item
|
|
|
|
*/
|
|
|
|
public function add($item);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes an item from the list.
|
|
|
|
*
|
|
|
|
* @param mixed $item
|
|
|
|
*/
|
|
|
|
public function remove($item);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the first item in the list.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function first();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the last item in the list.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function last();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a map of a key field to a value field of all the items in the
|
|
|
|
* list.
|
|
|
|
*
|
|
|
|
* @param string $keyfield
|
|
|
|
* @param string $titlefield
|
|
|
|
* @return array
|
|
|
|
*/
|
2011-10-22 15:42:46 +02:00
|
|
|
public function map($keyfield = 'ID', $titlefield = 'Title');
|
2011-04-19 09:03:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the first item in the list where the key field is equal to the
|
|
|
|
* value.
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function find($key, $value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of a single field value for all items in the list.
|
|
|
|
*
|
2011-12-07 02:35:30 +01:00
|
|
|
* @param string $colName
|
2011-04-19 09:03:23 +02:00
|
|
|
* @return array
|
|
|
|
*/
|
2011-10-22 15:42:46 +02:00
|
|
|
public function column($colName = "ID");
|
2012-11-03 02:14:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Walks the list using the specified callback
|
|
|
|
*
|
|
|
|
* @param callable $callback
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function each($callback);
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|