ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAccessibilityDocumentTableDataProvider.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
8 {
12  public function getList(array $params, array $filter) : array
13  {
14  $items = ilAccessibilityDocument::orderBy('sorting')->get();
15 
16  return [
17  'items' => $items,
18  'cnt' => count($items)
19  ];
20  }
21 }
getList(array $params, array $filter)
Table parameters like limit or order Filter settings provided by a ilTable2GUI instance array An asso...
Interface ilAccessibilityTableDataProvider.
static orderBy($orderBy, $orderDirection='ASC')