-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmphb-styles.php
More file actions
29 lines (25 loc) · 876 Bytes
/
mphb-styles.php
File metadata and controls
29 lines (25 loc) · 876 Bytes
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
<?php
/**
* Plugin Name: Hotel Booking Styles & Templates
* Plugin URI: https://motopress.com/
* Description: A set of tools to easily customize and style the booking forms, widgets, and accommodation type pages for the MotoPress Hotel Booking plugin.
* Version: 1.1.5
* Author: MotoPress
* Author URI: https://motopress.com/
* License: GPLv2 or later
* Text Domain: mphb-styles
* Domain Path: /languages
* Requires Hotel Booking: 3.0.3
*/
if (!defined('ABSPATH')) {
exit;
}
if (!defined('MPHB\Styles\VERSION')) {
define('MPHB\Styles\VERSION', '1.1.5');
define('MPHB\Styles\PLUGIN_URL', plugin_dir_url(__FILE__)); // With trailing slash
include 'includes/functions.php';
include 'includes/filters.php';
include 'includes/scripts.php';
include 'includes/settings-tab.php';
include 'includes/template-editor/mphb-templates.php';
}