PluginProbe
CSS & JavaScript Toolbox / 9.3.1
CSS & JavaScript Toolbox v9.3.1
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
css-javascript-toolbox / autoload.inc.php

autoload.inc.php in CSS & JavaScript Toolbox 9.3.1, at autoload.inc.php

30 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 *
4 */
5
6 // NOTE: NOT ALL CLASSED IS AUTOLOADED YET! ONLY FEW CLASSES
7 // IS AUTOLOADED. ONLY CLASSES WITH NAME MAPPED TO TE PHYSICAL PATH
8 // IS AUTOLOADED!!
9 require_once CJTOOLBOX_FRAMEWORK . '/autoload/loader.php';
10 $CJTAutoLoad = CJT_Framework_Autoload_Loader::autoLoad( 'CJT', CJTOOLBOX_PATH );
11
12 // Old class maps.
13 // Only commonly-used classed will be mapped here.
14 $map = $CJTAutoLoad->map();
15
16 // xTable class
17 $map->offsetSet( 'cssJSToolbox', 'css-js-toolbox.class.php' );
18 $map->offsetSet( 'CJTxTable', 'framework/db/mysql/xtable.inc.php' );
19 $map->offsetSet( 'CJTTable', 'framework/db/mysql/table.inc.php' );
20 $map->offsetSet( 'CJTBlockPinsTable', 'tables/block-pins.php' );
21 $map->offsetSet( 'CJTBlocksTable', 'tables/blocks.php' );
22 $map->offsetSet( 'CJTBlockFilesTable', 'tables/block-files.php' );
23 $map->offsetSet( 'CJTBlockModel', 'models/block.php' );
24 $map->offsetSet( 'CJTBlocksModel', 'models/blocks.php' );
25 $map->offsetSet( 'CJTAccessPoint', 'framework/access-points/access-point.class.php' );
26 $map->offsetSet( 'CJTPageAccessPoint', 'framework/access-points/page.class.php' );
27
28
29 # Composer Autoloads (All the above autoloads is deprecated and will be revmoed later)
30 require 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';