ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
interface.ilPDSelectedItemsBlockConstants.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
23 public const VIEW_SELECTED_ITEMS = 0;
24 public const VIEW_RECOMMENDED_CONTENT = 1;
25 public const VIEW_MY_MEMBERSHIPS = 2;
26 public const VIEW_LEARNING_SEQUENCES = 3;
27 public const VIEW_MY_STUDYPROGRAMME = 4;
28
29 public const SORT_BY_TYPE = 'type';
30 public const SORT_BY_LOCATION = 'location';
31 public const SORT_BY_START_DATE = 'start_date';
32 public const SORT_BY_ALPHABET = 'alphabet';
33 public const SORT_MANUALLY = 'manually';
34
35 public const PRESENTATION_LIST = 'list';
36 public const PRESENTATION_TILE = 'tile';
37}