winter/modules/backend/widgets/table/ClientMemoryDataSource.php

62 lines
1.6 KiB
PHP
Raw Normal View History

<?php namespace Backend\Widgets\Table;
/**
* The client-memory data source for the Table widget.
*/
2016-01-16 16:20:33 +11:00
class ClientMemoryDataSource extends DataSourceBase
{
/**
* @var array Keeps the data source data.
*/
protected $data = [];
/**
* Initializes records in the data source.
* The method doesn't replace existing records and
* could be called multiple times in order to fill
* the data source.
* @param array $records Records to initialize in the data source.
*/
public function initRecords($records)
{
$this->data = array_merge($this->data, $records);
}
/**
* Returns a total number of records in the data source.
* @return integer
*/
public function getCount()
{
return count($this->data);
}
/**
* Removes all records from the data source.
*/
public function purge()
{
$this->data = [];
}
/**
* Return records from the data source.
* @param integer $offset Specifies the offset of the first record to return, zero-based.
* @param integer $count Specifies the number of records to return.
2016-01-16 16:20:33 +11:00
* @return array Returns the records.
* If there are no more records, returns an empty array.
*/
public function getRecords($offset, $count)
{
return array_slice($this->data, $offset, $count);
}
/**
* Returns all records in the data source.
* This method is specific only for the client memory data sources.
*/
public function getAllRecords()
{
return $this->data;
}
}