Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
public_html
/
wp-content
/
plugins
/
profundcore
/
addons
/
Editing: widgets_control.php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly. class profundcore_Widgets_Control{ public function __construct(){ $this->profundcore_Widgets_Control(); } public function profundcore_Widgets_Control(){ if ( file_exists( __DIR__ . '/widgets/section-title.php' ) ) { require_once __DIR__ . '/widgets/section-title.php'; } if ( file_exists( __DIR__ . '/widgets/button.php' ) ) { require_once __DIR__ . '/widgets/button.php'; } if ( file_exists( __DIR__ . '/widgets/image-carousel.php' ) ) { require_once __DIR__ . '/widgets/image-carousel.php'; } if ( file_exists( __DIR__ . '/widgets/campaign.php' ) ) { require_once __DIR__ . '/widgets/campaign.php'; } if ( file_exists( __DIR__ . '/widgets/feature-box.php' ) ) { require_once __DIR__ . '/widgets/feature-box.php'; } if ( file_exists( __DIR__ . '/widgets/position-element.php' ) ) { require_once __DIR__ . '/widgets/position-element.php'; } if ( file_exists( __DIR__ . '/widgets/testimonial.php' ) ) { require_once __DIR__ . '/widgets/testimonial.php'; } if ( file_exists( __DIR__ . '/widgets/post-slider.php' ) ) { require_once __DIR__ . '/widgets/post-slider.php'; } if ( file_exists( __DIR__ . '/widgets/team.php' ) ) { require_once __DIR__ . '/widgets/team.php'; } if ( file_exists( __DIR__ . '/widgets/counter.php' ) ) { require_once __DIR__ . '/widgets/counter.php'; } if ( file_exists( __DIR__ . '/widgets/lightbox.php' ) ) { require_once __DIR__ . '/widgets/lightbox.php'; } if ( file_exists( __DIR__ . '/widgets/shortcode.php' ) ) { require_once __DIR__ . '/widgets/shortcode.php'; } if ( file_exists( __DIR__ . '/widgets/tabs.php' ) ) { require_once __DIR__ . '/widgets/tabs.php'; } } } new profundcore_Widgets_Control();
Save
Cancel