HEX
Server: Apache
System: Linux web5.visualcom.es 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ensaco.es (10019)
PHP: 8.3.32
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/ensaco.es/httpdocs/wp-content/plugins/bb-plugin/includes/updater/updater.php
<?php

/* Only run if not already setup and not using a repo version. */
if ( ! class_exists( 'FLUpdater' ) && FL_BUILDER_LITE !== true ) {

	/* Defines */
	define( 'FL_UPDATER_DIR', trailingslashit( __DIR__ ) );

	/* Classes */
	require_once FL_UPDATER_DIR . 'classes/class-fl-updater.php';

	/* Actions */
	add_action( 'fl_themes_license_form', 'FLUpdater::render_form' );

	/* Initialize the updater. */
	FLUpdater::init();
}

/**
 * Show dummy license tab with links to docs/upgrade etc.
 */
if ( FL_BUILDER_LITE === true ) {
	add_action( 'fl_themes_license_form', 'FLBuilderAdmin::render_form_lite' );
}