PluginProbe
AI / trunk
AI vtrunk
1.3.0 1.2.0 1.1.0 1.0.2 1.0.1 1.0.0 0.9.0 trunk 0.1.1 0.2.0 0.2.1 0.3.0 0.3.1 0.4.0 0.4.1 0.5.0 0.6.0 0.7.0 0.8.0
ai / build / build.php

build.php in AI trunk, at build/build.php

44 lines 962 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main entry point for auto-generated asset registration.
4 * Do not edit this file manually.
5 *
6 * @package ai
7 */
8
9 // Load script module registration.
10 $modules_file = __DIR__ . '/modules.php';
11 if ( file_exists( $modules_file ) ) {
12 require_once $modules_file;
13 }
14
15 // Load script registration.
16 $scripts_file = __DIR__ . '/scripts.php';
17 if ( file_exists( $scripts_file ) ) {
18 require_once $scripts_file;
19 }
20
21 // Load style registration.
22 $styles_file = __DIR__ . '/styles.php';
23 if ( file_exists( $styles_file ) ) {
24 require_once $styles_file;
25 }
26
27 // Load routes registration.
28 $routes_file = __DIR__ . '/routes.php';
29 if ( file_exists( $routes_file ) ) {
30 require_once $routes_file;
31 }
32
33 // Load widgets registration.
34 $widgets_file = __DIR__ . '/widgets.php';
35 if ( file_exists( $widgets_file ) ) {
36 require_once $widgets_file;
37 }
38
39 // Load pages registration.
40 $pages_file = __DIR__ . '/pages.php';
41 if ( file_exists( $pages_file ) ) {
42 require_once $pages_file;
43 }
44