ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractBaseSorter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
32 abstract class AbstractBaseSorter implements CollectionSorter
33 {
35  protected int $direction = SORT_ASC;
36 
37  public function __construct(ResourceBuilder $resource_builder, int $direction = SORT_ASC)
38  {
39  $this->resource_builder = $resource_builder;
40  $this->direction = $direction;
41  }
42 
43  abstract protected function sortResourceIdentification(array $identifications): array;
44 
45 
47  {
48  $identifications = $collection->getResourceIdentifications();
49  $collection->clear();
50  $sorted = $this->sortResourceIdentification($identifications);
51  if ($this->direction == SORT_DESC) {
52  $sorted = array_reverse($sorted);
53  }
54  foreach ($sorted as $identification) {
55  $collection->add($identification);
56  }
57 
58  return $collection;
59  }
60 }
__construct(ResourceBuilder $resource_builder, int $direction=SORT_ASC)
add(ResourceIdentification $identification)