HEX
Server: Apache/2.4.57 (Debian)
System: Linux web-server-k8s-e92jnr3j-6f99bff6b6-rp2wg 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64
User: apache (48)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: /var/www/sites/1250.info/wp-content/plugins/nm-custom-code/nm-custom-code.php
<?php
/*
	Plugin Name: Savoy Theme - Content Elements
	Plugin URI: http://themeforest.net/item/savoy-minimalist-ajax-woocommerce-theme/12537825
	Description: Adds page elements, widgets and custom code fields.
	Version: 1.5.5
	Author: NordicMade
	Author URI: http://www.nordicmade.com
	Text Domain: nm-content-elements
	Domain Path: /languages/
*/

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class NM_Content_Elements {
	
    /* Init */
	function init() {
        // Constants
        define( 'NM_CE_INC_DIR', plugin_dir_path( __FILE__ ) . 'includes' );
        define( 'NM_CE_INC_URI', plugin_dir_url( __FILE__ ) . 'includes' );
        
        // Include: Custom code fields
        include( NM_CE_INC_DIR . '/custom-code.php' );
        
        // Include: Post - Social share
        include( NM_CE_INC_DIR . '/post-social-share.php' );
        
        // Include: Shortcodes
        include( NM_CE_INC_DIR . '/shortcodes.php' );
        
        // Include: Visual Composer elements
        include( NM_CE_INC_DIR . '/visual-composer.php' );
        // Include: Visual Composer - Shortcode functions
        include( NM_CE_INC_DIR . '/visual-composer/vc-shortcode-functions.php' );
        
        // Include: Elementor widgets
        if ( did_action( 'elementor/loaded' )/* && is_admin()*/ ) {
            $elementor_min_version = apply_filters( 'nm_elementor_min_version', '2.0.0' );
            /*$elementor_php_min_version = '7.0';
            
            if (
                version_compare( ELEMENTOR_VERSION, $elementor_min_version, '>='
                && version_compare( PHP_VERSION, $elementor_php_min_version, '>=' )
            ) ) {*/
            if ( version_compare( ELEMENTOR_VERSION, $elementor_min_version, '>=' ) ) {
                include( NM_CE_INC_DIR . '/elementor.php' );
            }
        }
        
        // Include: Widgets
        include( NM_CE_INC_DIR . '/widgets.php' );
    }
	
}

$NM_Content_Elements = new NM_Content_Elements();
$NM_Content_Elements->init();