DataSetInterface.php 296 B

12345678910111213141516171819
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\Core\UI\Interfaces;
  3. /*
  4. * Interface for set of data returned by datatable
  5. */
  6. interface DataSetInterface
  7. {
  8. public function getOffset();
  9. public function getRecords();
  10. public function getLenght();
  11. public function getFullLenght();
  12. }