Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.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 : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/stm-motors-extends/nuxy/ |
Upload File : |
<?php
/**
* Framework Name: NUXY
* Framework URI: https://github.com/StylemixThemes/nuxy
* Description: WordPress Custom Fields & Theme Options with Vue.js.
* Version: 4.4.1
* License: http://www.gnu.org/licenses/gpl-3.0.html
* Author: StylemixThemes
* Author URI: https://stylemixthemes.com
*
* @package WordPress Custom Fields & Theme Options
* @link https://github.com/StylemixThemes/nuxy
*/
add_action( 'plugins_loaded', function () {
if ( ! function_exists( 'get_plugin_data' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$framework_versions = apply_filters( 'wpcfto_versions', array() );
$max_version = array_keys( $framework_versions, max( $framework_versions ), true );
if ( ! class_exists( 'Stylemix_NUXY' ) && __FILE__ === $max_version[0] ) {
define( 'STM_WPCFTO_VERSION', '4.3.8' );
define( 'STM_WPCFTO_FILE', __FILE__ );
define( 'STM_WPCFTO_PATH', dirname( STM_WPCFTO_FILE ) );
define( 'STM_WPCFTO_URL', plugin_dir_url( STM_WPCFTO_FILE ) );
class Stylemix_NUXY {
public function __construct() {
require_once STM_WPCFTO_PATH . '/metaboxes/metabox.php';
require_once STM_WPCFTO_PATH . '/metaboxes/google_fonts.php';
require_once STM_WPCFTO_PATH . '/taxonomy_meta/metaboxes.php';
require_once STM_WPCFTO_PATH . '/settings/settings.php';
require_once STM_WPCFTO_PATH . '/settings/front_settings.php';
require_once STM_WPCFTO_PATH . '/backward-compatibility.php';
if ( ! is_textdomain_loaded( 'nuxy' ) ) {
$mo_file_path = STM_WPCFTO_PATH . '/languages/nuxy-' . determine_locale() . '.mo';
load_textdomain( 'nuxy', $mo_file_path );
}
}
}
new Stylemix_NUXY();
}
} );
add_filter( 'wpcfto_versions', function ( $versions ) {
$plugin_data = get_plugin_data( __FILE__ );
$versions[ __FILE__ ] = $plugin_data['Version'];
return $versions;
} );