| Server IP : 5.129.245.98 / Your IP : 216.73.216.246 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/rehub-framework/includes/ |
Upload File : |
<?php
/**
* Rehub Framework Widget Functions
*
* @package ReHub\Functions
* @version 1.0.1
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
//////////////////////////////////////////////////////////////////
// Include widgets
//////////////////////////////////////////////////////////////////
include (rf_locate_template('inc/widgets/tabs_widget.php'));
include (rf_locate_template('inc/widgets/tabsajax_widget.php'));
include (rf_locate_template('inc/widgets/posts_list.php'));
include (rf_locate_template('inc/widgets/featured_sidebar.php'));
include (rf_locate_template('inc/widgets/social_link_widget.php'));
include (rf_locate_template('inc/widgets/sticky_scroll.php'));
include (rf_locate_template('inc/widgets/related_reviews.php'));
include (rf_locate_template('inc/widgets/top_offers.php'));
include (rf_locate_template('inc/widgets/outer_ads.php'));
include (rf_locate_template('inc/widgets/better_menu.php'));
include (rf_locate_template('inc/widgets/imagetrend_sidebar.php'));
include (rf_locate_template('inc/widgets/condition_widget.php'));
include (rf_locate_template('inc/widgets/dealwoo.php'));
include (rf_locate_template('inc/widgets/latest_comparison.php'));
include (rf_locate_template( 'inc/widgets/woocategory.php' ));
add_action( 'plugins_loaded', 'rh_conditional_widget_init' );
function rh_conditional_widget_init(){
if(defined( 'WCFMmp_TOKEN' )){
include (rf_locate_template('inc/widgets/user_profile.php'));
}
if ( class_exists('Woocommerce') ) {
require_once dirname( WC_PLUGIN_FILE ) . '/includes/abstracts/abstract-wc-widget.php';
include (rf_locate_template( 'inc/widgets/woofilterbrand.php' ));
}
}