uawdijnntqw1x1x1
IP : 216.73.217.176
Hostname : webm001.cluster102.gra.hosting.ovh.net
Kernel : Linux webm001.cluster102.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
bechata
/
mp
/
0477a
/
..
/
.quarantine
/
..
/
73eb7
/
spacious-toolkit.php.tar
/
/
home/bechata/mp/wp-content/themes/spacious/inc/spacious-toolkit.php000066600000004521152367043130021515 0ustar00<?php /** * Adds new widgets and compatibility for the Elementor plugin in Spacious theme. * * @package ThemeGrill * @subpackage Spacious * @since Spacious 1.5 */ if ( ! defined( 'ABSPATH' ) ) { exit; } class Spacious_Elementor_Addons { /** * A reference to an instance of this class. */ private static $instance; /** * Get suffix for library files * * @var string */ private $suffix; /** * Returns an instance of this class. */ public static function get_instance() { if ( null == self::$instance ) { self::$instance = new Spacious_Elementor_Addons(); } return self::$instance; } /** * Initializes the plugin by setting filters and administration functions. */ public function __construct() { // Assign suffix for library files $this->suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Enqueue style for Elementor front-end add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'spacious_elementor_styles' ) ); // Enqueue scripts for Elementor front-end add_action( 'elementor/frontend/before_enqueue_scripts', array( $this, 'spacious_elementor_enqueue_scripts' ) ); // Register scripts for Elementor front-end add_action( 'elementor/frontend/before_register_scripts', array( $this, 'spacious_elementor_register_scripts' ) ); } /** * Enqueue styles for Elementor frontends */ public function spacious_elementor_styles() { // Enqueue the main Elementor CSS file for use with Elementor. wp_enqueue_style( 'spacious-elementor', get_template_directory_uri() . '/inc/elementor/assets/css/elementor.css' ); } /** * Enqueue scripts for Elementor frontends */ public function spacious_elementor_enqueue_scripts() { wp_enqueue_script( 'elementor-custom', SPACIOUS_JS_URL . '/elementor-custom.js', array( 'jquery' ), false, true ); } /** * Register script for Elementor frontends */ public function spacious_elementor_register_scripts() { wp_register_script( 'jquery-waypoints', SPACIOUS_JS_URL . '/waypoints' . $this->suffix . '.js', array( 'jquery' ), '2.0.3', true ); wp_register_script( 'jquery-countTo', SPACIOUS_JS_URL . '/jquery.countTo' . $this->suffix . '.js', array( 'jquery' ), false, true ); } } new Spacious_Elementor_Addons();
/home/bechata/mp/0477a/../.quarantine/../73eb7/spacious-toolkit.php.tar