PluginProbe
MotoPress Hotel Booking for Divi / 1.1.0
MotoPress Hotel Booking for Divi v1.1.0
trunk 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1.0 2.0.0
mphb-divi / includes / loader.php

loader.php in MotoPress Hotel Booking for Divi 1.1.0, at includes/loader.php

18 lines 285 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 $module_files = array_merge(
4 glob( __DIR__ . '/modules/*/*.php' ),
5 glob( __DIR__ . '/modules/*/*/*.php' )
6 );
7
8 // Load custom Divi Builder modules
9 foreach ( (array) $module_files as $module_file ) {
10
11 if ( $module_file ) {
12
13 require_once $module_file;
14
15 }
16
17 }
18