Changeset 1237434
- Timestamp:
- 09/03/2015 03:55:40 PM (11 years ago)
- Location:
- freetobook-booking-button/trunk
- Files:
-
- 2 edited
-
freetobook-widget.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
freetobook-booking-button/trunk/freetobook-widget.php
r1105925 r1237434 4 4 Plugin URI: http://www.freetobook.com/widget 5 5 Description: Booking Widget for wordpress 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: freetobook.com 8 8 Author URI: http://www.freetobook.com … … 21 21 22 22 23 function FreetobookWidget()23 function __construct() 24 24 { 25 25 $this->widget_key=get_option('ftb_widget_key'); … … 34 34 /* Widget control settings. */ 35 35 $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'freetobook' ); 36 $this->WP_Widget('freetobook','Freetobook Widget',$widget_ops,$control_ops);36 parent::__construct('freetobook','Freetobook Widget',$widget_ops,$control_ops); 37 37 38 38 } -
freetobook-booking-button/trunk/readme.txt
r1105925 r1237434 3 3 Tags: freetobook, booking system, online booking,pms, web booking, booking engine,booking button 4 4 Requires at least: 3.0 5 Tested up to: 4. 1.15 Tested up to: 4.3 6 6 Stable tag: trunk 7 7 … … 32 32 == Changelog == 33 33 34 = 1.0.4 = 35 * Changed deprecated PHP4 style constructors to __construct 34 36 35 = 1.0.2=37 = 1.0.2 = 36 38 * Added support for loading stylesheet and javascript over https 37 39 38 = 1.0.1=40 = 1.0.1 = 39 41 * Documentation fixes 40 42
Note: See TracChangeset
for help on using the changeset viewer.