| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\DataTable\DataProviders;
- use \ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\DataSetInterface;
- class DataSet implements DataSetInterface
- {
- public $offset = 0;
- public $fullDataLenght = 0;
- public $records = [];
- public function getOffset()
- {
- return $this->offset;
- }
- public function getRecords()
- {
- return $this->records;
- }
- public function getLenght()
- {
- return count($this->records);
- }
- public function getFullLenght()
- {
- return $this->fullDataLenght;
- }
- }
|