Browse
For agents
About
MotoPress Hotel Booking for Divi
/
1.0.5
MotoPress Hotel Booking for Divi
v1.0.5
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
/
includes
/
loader.php
loader.php
in MotoPress Hotel Booking for Divi 1.0.5, at includes/loader.php
15 lines
225 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
=
glob
(
__DIR__
.
'
/modules/*/*.php
'
)
;
4
5
//
Load custom Divi Builder modules
6
foreach
(
(
array
)
$
module_files
as
$
module_file
)
{
7
8
if
(
$
module_file
)
{
9
10
require_once
$
module_file
;
11
12
}
13
14
}
15