<?php
/*
 ______ _____   _______ _______ _______ _______ ______ _______ 
|   __ \     |_|    ___|_     _|   |   |       |   __ \   _   |
|    __/       |    ___| |   | |       |   -   |      <       |
|___|  |_______|_______| |___| |___|___|_______|___|__|___|___|

P L E T H O R A T H E M E S . C O M             	   (c) 2017

Call To Booking Widget Extension Class

*/

if ( ! defined( 'ABSPATH' )) exit; // NO DIRECT ACCESS

if ( class_exists('Plethora_Widget_Bookingcallto') && !class_exists('Plethora_Widget_Bookingcallto_Ext') ) {

	add_action('widgets_init',  function() {

		return register_widget("Plethora_Widget_Bookingcallto_Ext");
	}); 	

	/**
	* Extend base class
	* Base class file: /plugins/plethora-framework/features/widget/bookingcallto/widget-bookingcallto.php
	*/
	class Plethora_Widget_Bookingcallto_Ext extends Plethora_Widget_Bookingcallto { 

	}
}