Browse
For agents
About
MotoPress Hotel Booking for Divi
/
trunk
MotoPress Hotel Booking for Divi
vtrunk
Switch version
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
Overview
Code
mphb-divi
/
divi-4
/
includes
/
loader.php
loader.php
in MotoPress Hotel Booking for Divi trunk, at divi-4/includes/loader.php
17 lines
267 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
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