PluginProbe ʕ •ᴥ•ʔ
FAPI Member / trunk
FAPI Member vtrunk
2.2.33 2.2.32 trunk 1.9.47 2.1.18 2.2.24 2.2.25 2.2.26 2.2.28 2.2.29 2.2.30 2.2.31
fapi-member / src / Divi / includes / loader.php
fapi-member / src / Divi / includes Last commit date
fields 1 year ago modules 1 year ago FmDivi.php 1 year ago loader.js 1 year ago loader.php 1 year ago
loader.php
15 lines
1 <?php
2
3 if ( ! class_exists( 'ET_Builder_Element' ) ) {
4 return;
5 }
6
7 $module_files = glob( __DIR__ . '/modules/*/*.php' );
8
9 // Load custom Divi Builder modules
10 foreach ( (array) $module_files as $module_file ) {
11 if ( $module_file && preg_match( "/\/modules\/\b([^\/]+)\/\\1\.php$/", $module_file ) ) {
12 require_once $module_file;
13 }
14 }
15