ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NoLegacyExplorerUsagesRule.php
Go to the documentation of this file.
1 <?php
2 
20 
23 use PhpParser\Node;
26 
27 class NoLegacyExplorerUsagesRule extends LegacyClassUsageRule implements Rule
28 {
29  protected function getHumanReadableRuleName(): string
30  {
31  return 'Legacy Explorer Usages';
32  }
33 
34  protected function getRelevantILIASVersion(): int
35  {
36  return 10;
37  }
38 
39 
40  protected function getForbiddenClasses(): array
41  {
42  return ['ilExplorer', 'ilExplorerBaseGUI', 'ilTreeExplorerGUI'];
43  }
44 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...