PluginProbe
Jetpack Boost – Website Speed, Performance and Critical CSS / trunk
Jetpack Boost – Website Speed, Performance and Critical CSS vtrunk
4.7.0 4.7.0-beta 4.6.3 4.6.2 4.6.2-beta 3.12.0 3.12.1 3.13.0 3.13.1 3.2.0 3.2.1 3.2.2 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.6 3.4.7 3.4.8 3.4.9 3.5.0 3.5.1 All 124 releases
jetpack-boost / build / build.php

build.php in Jetpack Boost – Website Speed, Performance and Critical CSS trunk, at build/build.php

44 lines 973 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 jetpack_boost
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