PluginProbe
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager / 10
FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager v10
10.56 1.2.1 10 10.1 10.2 10.3 10.31 10.32 10.33 10.34 10.50 10.51 10.52 10.53 10.55 9.0 9.0.1 9.4 trunk 1.0.0 1.1 1.2
easy-code-manager / autoload.inc.php

autoload.inc.php in FluentSnippets – High-Performance Code Snippets, Header & Footer Code, Custom CSS & PHP Code Manager 10, 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', 'easy-code-manager.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 __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';