ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
invalid_class_map.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6 
7 $data_dir = dirname(__DIR__, 2);
8 
9 // the returned data is invalid due to the paths violating
10 // the ILIAS naming scheme 'class.<ClassName>GUI.php'.
11 
12 return array(
13  'ilCtrlBaseClass1TestGUI' => $data_dir . '/GUI/ilCtrlBaseClass1TestGUI.php',
14  'ilCtrlCommandClass1TestGUI' => $data_dir . '/GUI/class.ilCtrlCommandClass1Test.php',
15  'ilCtrlCommandClass2TestGUI' => $data_dir . '/GUI/ilCtrlCommandClass2TestGUI.php',
16 );