Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
bb-plugin
/
includes
/
updater
:
updater.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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(); }