-
Notifications
You must be signed in to change notification settings - Fork 0
/
divilocal.php
41 lines (34 loc) · 1.14 KB
/
divilocal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/*
Plugin Name: divilocal
Plugin URI: divi
Description: divi
Version: 1.0.0
Author: divi
Author URI: Jay
License: GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: etl-divilocal
Domain Path: /languages
divilocal is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
divilocal is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with divilocal. If not, see https://www.gnu.org/licenses/gpl-2.0.html.
*/
if ( ! function_exists( 'etl_initialize_extension' ) ):
/**
* Creates the extension's main class instance.
*
* @since 1.0.0
*/
function etl_initialize_extension() {
require_once plugin_dir_path( __FILE__ ) . 'includes/Divilocal.php';
}
add_action( 'divi_extensions_init', 'etl_initialize_extension' );
endif;