Changeset 1085158
- Timestamp:
- 02/08/2015 09:41:45 PM (11 years ago)
- Location:
- birchschedule/trunk
- Files:
-
- 2 edited
-
birchschedule.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
birchschedule/trunk/birchschedule.php
r1026583 r1085158 5 5 Plugin URI: http://www.birchpress.com 6 6 Description: An appointment booking and online scheduling plugin that allows service businesses to take online bookings. 7 Version: 1. 97 Version: 1.10 8 8 Author: BirchPress 9 9 Author URI: http://www.birchpress.com … … 11 11 */ 12 12 13 if (!defined('ABSPATH')) 14 exit; 13 if ( defined( 'ABSPATH' ) && !defined( 'BIRCHSCHEDULE' ) ) { 15 14 16 require_once 'framework/includes/birchpress.inc.php';15 define( 'BIRCHSCHEDULE', true ); 17 16 18 require_once 'includes/package.php'; 19 require_once 'includes/legacy_hooks.php'; 17 require_once 'lib/vendor/autoload.php'; 20 18 21 global $birchschedule, $birchpress;19 require_once 'framework/includes/birchpress.inc.php'; 22 20 23 $birchschedule->set_plugin_file_path(__FILE__); 24 $birchpress->set_plugin_url($birchschedule->plugin_url()); 21 require_once 'includes/legacy_hooks.php'; 25 22 26 $birchschedule->product_version = '1.9'; 27 $birchschedule->product_name = 'BirchPress Scheduler'; 28 $birchschedule->product_code = 'birchschedule'; 23 require_once 'includes/package.php'; 29 24 30 $birchschedule->run();25 global $birchschedule, $birchpress; 31 26 27 $birchschedule->set_plugin_file_path( __FILE__ ); 28 $birchpress->set_plugin_url( $birchschedule->plugin_url() ); 29 30 $birchschedule->set_product_version( '1.10' ); 31 $birchschedule->set_product_name( 'BirchPress Scheduler' ); 32 $birchschedule->set_product_code( 'birchschedule' ); 33 34 $birchschedule->run(); 35 36 } -
birchschedule/trunk/readme.txt
r1026583 r1085158 3 3 Tags: appointment, appointment booking, appointment booking calendar, appointment calendar, appointment scheduling, book appointment, booking calendar, scheduling, booking form, reservation, online scheduling 4 4 Requires at least: 3.7 5 Tested up to: 4. 06 Stable tag: 1. 95 Tested up to: 4.1 6 Stable tag: 1.10 7 7 8 8 BirchPress Scheduler is an appointment booking and online scheduling plugin that allows service businesses to take online bookings. … … 91 91 == Changelog == 92 92 93 = 1.10 = 94 * Improvement: open ‘Edit Appointment’ page in a new browser tab by right clicking the appointment title in Admin calendar. 95 * Bug Fix: remove the white part overlapping the menu of the dashboard on the left side. 96 * Improvement: performance improvements on appointment editting. 97 93 98 = 1.9 = 94 99 * Enhancement: improve the performance of the admin calendar.
Note: See TracChangeset
for help on using the changeset viewer.