PluginProbe ʕ •ᴥ•ʔ
Grid & Styler For Contact Form 7 And Divi / 1.6.1
Grid & Styler For Contact Form 7 And Divi v1.6.1
trunk 1.0.2 1.1.0 1.2.0 1.2.1 1.2.2 1.3.0 1.4.1 1.4.2 1.5.2 1.6.0 1.6.1 1.7.0 1.7.1 2.1.0 2.1.1
cf7-grid-and-styler-for-divi / includes / loader.php
cf7-grid-and-styler-for-divi / includes Last commit date
classes 1 year ago modules 1 year ago WptCf7Divi.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