| Server IP : 145.239.37.162 / Your IP : 216.73.217.71 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www_old/wp-content/themes/betheme/functions/builder/ |
Upload File : |
<?php
/**
* Muffin Builder 3.1
*
* @package Betheme
* @author Muffin group
* @link https://muffingroup.com
*
* @changelog
*
* 3.1
* added: unique IDs for all builder elements
*/
if( ! defined( 'ABSPATH' ) ){
exit; // Exit if accessed directly
}
if (! class_exists('Mfn_Builder'))
{
class Mfn_Builder {
/**
* Constructor
*/
public function __construct() {
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-helper.php'));
add_filter( 'mfn-builder-get', array( 'Mfn_Builder_Helper', 'filter_builder_get' ) );
if (is_admin()) {
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-fields.php'));
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-admin.php'));
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-ajax.php'));
} else {
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-styles.php'));
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-front.php'));
require_once(get_theme_file_path('/functions/builder/class-mfn-builder-items.php'));
}
}
}
}
$mfn_builder = new Mfn_Builder();