File "updater.php"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/includes/updater/updater.php
File size: 430 bytes
MIME-type: --
Charset: utf-8

<?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(dirname(__FILE__)));
	
	/* 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();
}