PluginProbe
MotoPress Hotel Booking for Divi / 1.0.3
MotoPress Hotel Booking for Divi v1.0.3
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
mphb-divi / mphb-divi.php

mphb-divi.php in MotoPress Hotel Booking for Divi 1.0.3, at mphb-divi.php

24 lines 747 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Hotel Booking & Divi Integration
4 * Plugin URI: https://motopress.com/products/hotel-booking-divi-theme-integration/
5 * Description: Integrates Divi theme with the MotoPress Hotel Booking plugin to modify content and styles visually via Divi builder.
6 * Version: 1.0.3
7 * Author: MotoPress
8 * Author URI: https://motopress.com/
9 * License: GPLv2 or later
10 * Text Domain: mphb-divi
11 * Domain Path: /languages
12 **/
13
14 if( !function_exists( 'mphb_divi_init' ) ):
15
16 add_action( 'divi_extensions_init', 'mphb_divi_init' );
17
18 function mphb_divi_init() {
19 if ( !class_exists( 'MPHB_Divi' ) && class_exists( 'HotelBookingPlugin' ) ) {
20 require( plugin_dir_path( __FILE__ ) . 'plugin.php' );
21 }
22 }
23
24 endif;