*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) die('
Direct access to this file do not allow!
');
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// PRIMARY URL CONSTANTS //////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ( ! defined( 'WPBM_VERSION_NUM' ) ) define( 'WPBM_VERSION_NUM', '2.1.9' );
// ..\home\siteurl\www\wp-content\plugins\plugin-name\wpbm-item.php
if ( ! defined( 'WPBM_FILE' ) ) define( 'WPBM_FILE', __FILE__ );
// wpbm-item.php
if ( ! defined('WPBM_PLUGIN_FILENAME' ) ) define('WPBM_PLUGIN_FILENAME', basename( __FILE__ ) );
// plugin-name
if ( ! defined('WPBM_PLUGIN_DIRNAME' ) ) define('WPBM_PLUGIN_DIRNAME', plugin_basename( dirname( __FILE__ ) ) );
// ..\home\siteurl\www\wp-content\plugins\plugin-name
if ( ! defined('WPBM_PLUGIN_DIR' ) ) define('WPBM_PLUGIN_DIR', untrailingslashit( plugin_dir_path( WPBM_FILE ) ) );
// http: //website.com/wp-content/plugins/plugin-name
if ( ! defined('WPBM_PLUGIN_URL' ) ) define('WPBM_PLUGIN_URL', untrailingslashit( plugins_url( '', WPBM_FILE ) ) );
require_once WPBM_PLUGIN_DIR . '/core/wpbm.php';
/**
* 1) Rename all files in plugin directory starting from wpbm -> prefix
*
* 2) Replace Instruction:
*
, 'booking-manager') -> , 'pluginnamelocale')
_wpbm_ -> _bk_ (...) in get_wpbm_option ....
WPBM -> PREFIX
wpbm -> prefix
bookingmanager -> booking ???
Booking Manager -> NEW_PLUGIN_NAME
*
*/