* @link https://www.fireplugins.com * @copyright Copyright © 2026 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Admin; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class Admin { /** * Admin Page Settings * * @var AdminPageSettings */ private $pageSettings; /** * Library * * @var Library */ public $library; /** * Admin constructor */ public function __construct() { new \FireBox\Core\Notices\Ajax(); add_action('admin_init', [$this, 'maybeExportSubmsissions']); add_action('admin_head', [$this, 'set_gutenberg_editor_logo']); add_action('wp_trash_post', [$this, 'on_campaign_trash'], 10, 2); add_action('untrash_post', [$this, 'on_campaign_untrash'], 10, 2); add_action('admin_enqueue_scripts', [$this, 'global_backend_assets'], 20); add_action('current_screen', [$this, 'current_screen']); add_action('firebox/admin/content', [$this, 'showNotices'], -5); add_action('admin_init', [$this, 'redirectAfterActivation']); // init dependencies $this->initDependencies(); // Admin Page Settings $this->pageSettings = new AdminPageSettings(); // run actions $this->handleActions(); // run filters $this->handleFilters(); add_action('save_post', [$this, 'onSave'], 20); } /** * On Save, clear the campaign cookie if closing behavior > when closed is set to "never". * * @param string $post_id * * @return void */ public function onSave($post_id) { if (!isset($_POST['post_type']) || $_POST['post_type'] !== 'firebox') { return; } if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { return; } if ($parent_id = wp_is_post_revision($post_id)) { $post_id = $parent_id; } $meta = get_post_meta($post_id, 'firebox_meta'); $assign_cookietype = isset($meta[0]['assign_cookietype']) ? $meta[0]['assign_cookietype'] : ''; if ($assign_cookietype === 'never') { $cookie = \FireBox\Core\Helpers\BoxHelper::cookiePrefix() . $post_id; foreach (\FireBox\Core\Helpers\BoxHelper::cookiePathsToClear() as $path) { setcookie($cookie, '', time() - 3600, $path, \FireBox\Core\Helpers\BoxHelper::cookieDomain()); } } } /** * Set the FireBox logo in the Gutenberg editor. * * @return void */ public function set_gutenberg_editor_logo() { if (get_post_type() !== 'firebox') { return; } ?> getSubmissionsForExport($form_id); if (!$export) { return; } /** * The export holds every submission for the form, so it must not sit at a * guessable path in the shared temp directory while it is being served. * wp_tempnam() creates a unique file with restrictive permissions. */ $name = sanitize_file_name($export['name']); $download_name = 'submissions_' . $name . '_' . gmdate('Y-m-d_H-i-s') . '.csv'; $filename = wp_tempnam('firebox-export-' . $name); if (!$filename) { return; } try { self::toCSV($export['rows'], $filename); // Send the appropriate headers to force the download in the browser header('Content-Description: File Transfer'); header('Content-Type: text/csv; charset=UTF-8'); header('Content-Disposition: attachment; filename="' . $download_name . '"'); header('X-Content-Type-Options: nosniff'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . filesize($filename)); // Clear any buffered output so it doesn't corrupt the download while (ob_get_level()) { ob_end_clean(); } flush(); readfile($filename); } finally { // Runs even if writing or streaming failed, so the PII never lingers on disk. if (file_exists($filename)) { unlink($filename); } } exit; } /** * Collects and prepares submission rows for CSV export. * Returns the prepared rows (with the resolved form attached) or false. * * @param string $form_id * * @return array|false */ protected function getSubmissionsForExport($form_id) { $payload = [ 'where' => [ 'form_id' => " = '" . sanitize_key($form_id) . "'", 'state' => ' = 1' ], 'offset' => 0, 'limit' => 99999, 'orderby' => 'created_at ASC' ]; if (!$submissions = firebox()->tables->submission->getResults($payload)) { return false; } if (!$form = \FireBox\Core\Helpers\Form\Form::getFormByID($form_id, true)) { return false; } // Fetch all submission meta in chunked IN() queries instead of one query per submission. $submission_ids = wp_list_pluck($submissions, 'id'); $meta_by_submission = []; foreach (array_chunk($submission_ids, 500) as $id_chunk) { $ids_in = implode(',', array_map('absint', $id_chunk)); $chunk_meta = firebox()->tables->submissionmeta->getResults([ 'where' => [ 'submission_id' => " IN (" . $ids_in . ")" ] ]); foreach ($chunk_meta as $meta_item) { $meta_by_submission[$meta_item->submission_id][] = $meta_item; } } $prepared = []; foreach ($submissions as $item) { $prepared_payload = [ 'id' => $item->id, 'created' => get_date_from_gmt($item->created_at), 'state' => $item->state === '1' ? 'Published' : 'Unpublished' ]; $meta = isset($meta_by_submission[$item->id]) ? $meta_by_submission[$item->id] : []; if ($meta && $form['fields']) { foreach ($form['fields'] as $field) { foreach ($meta as $meta_item) { if ($field->getOptionValue('id') === $meta_item->meta_key) { $prepared_payload[$field->getOptionValue('name')] = $field->prepareValue($meta_item->meta_value); } } } } $prepared[] = $prepared_payload; } return ['name' => $form['name'], 'rows' => $prepared]; } /** * Create a CSV file with given data * * @param array $data The data to populate the file * @param string $destination The path where the store the CSV file * @param bool $append If true, given data will be appended to the end of the file. * @param boolean $excel_security If enabled, certain row values will be prefixed by a tab to avoid any CSV injection. * * @return void */ private static function toCSV($data, $destination, $append = false, $excel_security = true, $check_for_duplicates = true) { $resource = fopen($destination, $append ? 'a+' : 'w'); if (!$append) { // Support UTF-8 on Microsoft Excel fputs($resource, "\xEF\xBB\xBF"); // Add column names in the first line fputcsv($resource, array_keys($data[0]), ',', '"', '\\'); } // Get CSV content $existingRows = []; if ($append && $check_for_duplicates) { while (($existingData = fgetcsv($resource)) !== false) { $existingRows[(int) $existingData[0]] = $existingData; } } foreach ($data as $row) { if (!empty($existingRows) && isset($row['id']) && array_key_exists($row['id'], $existingRows)) { continue; } // Prevent CSV Injection: https://vel.joomla.org/articles/2140-introducing-csv-injection if ($excel_security) { foreach ($row as &$value) { $value = is_array($value) ? implode(', ', $value) : $value; $firstChar = substr($value, 0, 1); // Prefixe values starting with a =, +, - or @ by a tab character if (in_array($firstChar, array('=', '+', '-', '@'))) { $value = ' ' . $value; } } } fputcsv($resource, $row, ',', '"', '\\'); } fclose($resource); } /** * Fires when a campaign is trashed. * * @param int $post_id * @param string $previous_status * * @return void */ public function on_campaign_trash($post_id, $previous_status) { $post_type = get_post_type($post_id); $post_status = get_post_status($post_id); if ($post_type === 'firebox' && $post_status === 'draft') { \FPFramework\Libs\AdminNotice::displaySuccess(firebox()->_('FB_CAMPAIGN_HAS_BEEN_TRASHED')); } } /** * Fires when a campaign is untrashed. * * @param int $post_id * @param string $previous_status * * @return void */ public function on_campaign_untrash($post_id, $previous_status) { $post_type = get_post_type($post_id); $post_status = get_post_status($post_id); if ($post_type === 'firebox' && $post_status === 'trash') { \FPFramework\Libs\AdminNotice::displaySuccess(firebox()->_('FB_CAMPAIGN_HAS_BEEN_RESTORED')); } } public function showNotices() { \FireBox\Core\Notices\Notices::getInstance()->show(); } public function global_backend_assets() { wp_register_style( 'firebox-admin-lite', FBOX_MEDIA_ADMIN_URL . 'css/lite.css', [], FBOX_VERSION, false ); wp_enqueue_style('firebox-admin-lite'); } public function current_screen($screen) { add_action('admin_enqueue_scripts', [$this, 'registerEditorMedia'], 11); add_action('enqueue_block_assets', [$this, 'registerCampaignEditorAssets'], 12); // Check for classic editor with firebox post type if (isset($screen->id) && $screen->id === 'firebox' && !$screen->is_block_editor) { add_action('admin_notices', [$this, 'showClassicEditorNotice']); } $allowed_pages = [ 'toplevel_page_firebox', 'firebox_page_firebox-campaigns', 'firebox_page_firebox-analytics', 'firebox_page_firebox-submissions', 'firebox_page_firebox-settings', 'firebox_page_firebox-import' ]; if (isset($screen->id) && in_array($screen->id, $allowed_pages)) { add_action('admin_enqueue_scripts', [$this, 'registerMediaAdminPages'], 20); add_filter('admin_footer_text', [$this, 'admin_footer_text']); } } /** * Shows a notice when using classic editor with firebox post type * * @return void */ public function showClassicEditorNotice() { ?>

_('FB_CLASSIC_EDITOR_NOT_SUPPORTED')); ?>

FBOX_MEDIA_URL, 'timezone' => $this->getTimezone(), 'license_type' => FBOX_LICENSE_TYPE, 'license_plan' => FBOX_LICENSE_PLAN, 'langs' => [ 'LITE' => fpframework()->_('FPF_LITE'), ] ]; wp_localize_script('firebox-admin-editor', 'fbox_admin_editor_js_object', $data); } public function registerCampaignEditorAssets() { if (!is_admin()) { return; } // Enqueue block editor style only in Gutenberg editor if (!function_exists('get_current_screen')) { return; } $screen = get_current_screen(); if (!$screen->is_block_editor) { return; } wp_enqueue_script( 'firebox-helper-store', FBOX_MEDIA_ADMIN_URL . 'js/blocks/helper_store.js', ['wp-data'], FBOX_VERSION, false ); wp_enqueue_style( 'firebox-blocks', FBOX_MEDIA_PUBLIC_URL . 'css/blocks.css', [], FBOX_VERSION ); $css = ' :root { --firebox-editor-background-image: url(' . FBOX_MEDIA_ADMIN_URL . 'images/browser-bg.png); } '; wp_add_inline_style('firebox-blocks', $css); if (get_post_type() !== 'firebox') { return; } wp_register_script('firebox-campaign-editor', false); wp_enqueue_script('firebox-campaign-editor'); $data = [ 'plugins' => [ 'wpml_active' => \is_plugin_active('sitepress-multilingual-cms/sitepress.php'), 'edd_active' => \is_plugin_active('easy-digital-downloads/easy-digital-downloads.php') || \is_plugin_active('easy-digital-downloads-pro/easy-digital-downloads.php'), 'woo_active' => \is_plugin_active('woocommerce/woocommerce.php') ], 'geolocation_updated' => !\FPFramework\Helpers\Geolocation::geoNeedsUpdate(), 'geolocation_update_url' => admin_url('admin.php?page=firebox-settings#geolocation'), 'geolocation_city_notice' => (new \FPFramework\Base\Conditions\Conditions\Geo\City())->getValueHint(), 'geolocation_country_notice' => (new \FPFramework\Base\Conditions\Conditions\Geo\Country())->getValueHint(), 'geolocation_region_notice' => (new \FPFramework\Base\Conditions\Conditions\Geo\Region())->getValueHint(), 'geolocation_continent_notice' => (new \FPFramework\Base\Conditions\Conditions\Geo\Continent())->getValueHint(), 'countries_list' => \FPFramework\Helpers\CountriesHelper::getCountriesList(), 'user_ip' => \FPFramework\Base\User::getIP(), 'currency' => $this->getCurrency() ]; wp_localize_script('firebox-campaign-editor', 'firebox_campaign_editor', $data); } /** * Returns the current eCommerce solution's currency. * * @return string */ private function getCurrency() { $output = ''; $eddActive = \is_plugin_active('easy-digital-downloads/easy-digital-downloads.php') || \is_plugin_active('easy-digital-downloads-pro/easy-digital-downloads.php'); if ($eddActive) { $output = \edd_get_currency(); } else { $wooActive = \is_plugin_active('woocommerce/woocommerce.php'); if ($wooActive) { $output = \get_woocommerce_currency(); } } return $output; } public function admin_footer_text() { return; } /** * Load admin dependencies. * * @return void */ private function initDependencies() { new Media(); $this->library = firebox()->library; } /** * Runs all Admin Actions * * @return void */ private function handleActions() { add_action('admin_enqueue_scripts', [$this, 'registerGlobalMedia'], 20); add_filter('plugin_action_links_' . plugin_basename(FBOX_PLUGIN_BASE_FILE), [$this, 'plugin_action_links']); } public function registerGlobalMedia() { wp_register_style('firebox-global-admin', false); wp_enqueue_style('firebox-global-admin'); $css = ' #adminmenu li.toplevel_page_firebox .wp-menu-image { padding: 4px 0 0 0; height: auto; } #adminmenu li.toplevel_page_firebox img { width: 20px !important; padding: 0; padding-top: 3px !important; } '; wp_add_inline_style('firebox-global-admin', $css); } /** * Adds extra links to the Plugins page in the free version. * - Upgrade to Pro button * * @param array $links * * @return array */ public function plugin_action_links($links) { $links = array_merge( $links, array( '' . firebox()->_('FB_UPGRADE_20_OFF') . '' ) ); return $links; } /** * Runs all Admin Filters * * @return void */ private function handleFilters() { add_filter('admin_body_class', [$this, 'setPluginPageBodyClass']); add_filter('plugin_row_meta' , [$this, 'addPluginMetaLinks'], 10, 4); } /** * Adds extra links to the plugins page. * * @param array $links * @param string $file * @param array $plugin_data * @param string $status * * @return array */ public function addPluginMetaLinks($links, $file, $plugin_data, $status) { if ($file === FBOX_PLUGIN_BASENAME) { $links['rate'] = '' . esc_html(firebox()->_('FB_RATE_FIREBOX')) . ''; $links['support'] = '' . esc_html(fpframework()->_('FPF_SUPPORT')) . ''; } return $links; } /** * Sets a class to the body of the FireBox Admin Pages * * @return string */ public function setPluginPageBodyClass($classes) { if (!$this->isPluginPage()) { return $classes; } $classes .= ' fpf-admin-page fpf-firebox-page'; if ($this->isControllerPage()) { $classes .= ' fpf-controller-page'; } // Set admin template theme class $fireplugins_theme = isset($_COOKIE['fireplugins_theme']) ? sanitize_key($_COOKIE['fireplugins_theme']) : 'light'; $classes .= ' ' . $fireplugins_theme; // Set admin template sidebar toggle class $sidebar_state = isset($_COOKIE['fireplugins_sidebar_state']) ? sanitize_key($_COOKIE['fireplugins_sidebar_state']) : 'expand'; $classes .= ' ' . ($sidebar_state === 'expand' ? 'fpf-admin-sidebar-expand' : 'fpf-admin-sidebar-shrink'); return $classes; } /** * Checks if we are in a plugin page * * @return boolean */ private function isPluginPage() { if (in_array($this->getPageNow(), ['edit.php', 'post-new.php']) && isset($_GET['post_type']) && $_GET['post_type'] == 'firebox') //phpcs:ignore WordPress.Security.NonceVerification.Recommended { return true; } if ($this->getPageNow() == 'post.php') { return true; } if ($this->isControllerPage()) { return true; } return false; } /** * Whether we are browsing a plugin page from the plugin's menu * * @return boolean */ private function isControllerPage() { if (!firebox()->menu) { return false; } $current_plugin_page = fpframework()->getPluginPage(); $plugin_menu_items = firebox()->menu->getPluginMenuItems(); // Only set the class to the plugin pages return $this->getPageNow() == 'admin.php' && in_array($current_plugin_page, $plugin_menu_items); } /** * Returns page now * * @return string */ protected function getPageNow() { global $pagenow; return $pagenow; } /** * Registers CSS and JS files * * @return void */ public function registerMediaAdminPages() { $this->registerStyles(); $this->registerScripts(); } /** * Register admin styles. * * @return void */ public function registerStyles() { // load dashicons wp_enqueue_style('dashicons'); // firebox main admin css wp_register_style( 'firebox-admin', FBOX_MEDIA_ADMIN_URL . 'css/firebox.css', [], FBOX_VERSION, false ); wp_enqueue_style('firebox-admin'); // firebox admin design wp_register_style( 'firebox-design-admin', FBOX_MEDIA_ADMIN_URL . 'css/firebox_design.css', [], FBOX_VERSION, false ); wp_enqueue_style('firebox-design-admin'); $css = ' :root { --fpf-templates-library-header-logo: url(' . FBOX_MEDIA_ADMIN_URL . 'images/logo.svg); } '; wp_add_inline_style('firebox-admin', $css); } /** * Registers admin scripts. * * @return void */ public function registerScripts() { wp_register_script('firebox-admin', false); wp_enqueue_script('firebox-admin'); $data = array( 'campaigns_item_new_url' => admin_url('post-new.php?post_type=firebox'), 'campaigns_list_url' => admin_url('admin.php?page=firebox-campaigns'), 'campaigns_item_edit_url' => admin_url('post.php?post={{ID}}&action=edit'), 'campaigns_item_analytics_url' => admin_url('admin.php?page=firebox-analytics&campaign={{ID}}'), 'campaigns_analytics_url' => admin_url('admin.php?page=firebox-analytics'), 'submissions_page' => admin_url('admin.php?page=firebox-submissions'), 'flags_url' => FBOX_PLUGIN_URL . 'Inc/Framework/media/admin/images/flags/{{FLAG}}.png', 'license_type' => FBOX_LICENSE_TYPE, 'license_plan' => FBOX_LICENSE_PLAN, 'langs' => [ 'CAMPAIGN_INFO' => firebox()->_('FB_CAMPAIGN_INFO'), 'EDIT_CAMPAIGN' => firebox()->_('FB_EDIT_CAMPAIGN'), 'STATUS' => fpframework()->_('FPF_STATUS'), 'CREATED' => fpframework()->_('FPF_CREATED'), 'LAST_VIEWED' => firebox()->_('FB_LAST_VIEWED'), 'ACTIVE' => firebox()->_('FB_ACTIVE'), 'DISABLED' => fpframework()->_('FPF_DISABLED'), 'ID' => fpframework()->_('FPF_ID'), 'CAMPAIGN' => firebox()->_('FB_CAMPAIGN'), 'VIEW' => firebox()->_('FB_VIEW'), 'VIEWS' => firebox()->_('FB_VIEWS'), 'CLICK' => firebox()->_('FB_CLICK'), 'CLICKS' => firebox()->_('FB_CLICKS'), 'ACTIONS' => firebox()->_('FB_ACTIONS'), 'CONVERSION' => firebox()->_('FB_CONVERSION'), 'CONVERSIONS' => firebox()->_('FB_CONVERSIONS'), 'CONVERSION_RATE' => firebox()->_('FB_CONVERSION_RATE'), 'NO_DATA_AVAILABLE' => firebox()->_('FB_NO_DATA_AVAILABLE'), 'COULDNT_LOAD_DATA' => firebox()->_('FB_COULDNT_LOAD_DATA'), 'TRY_AGAIN' => firebox()->_('FB_TRY_AGAIN'), 'DISMISS' => firebox()->_('FB_DISMISS'), 'ERROR_OCCURRED_PLEASE_TRY_AGAIN' => fpframework()->_('FPF_ERROR_OCCURRED_PLEASE_TRY_AGAIN'), 'COUNTRIES' => fpframework()->_('FPF_COUNTRIES'), 'FLAG' => fpframework()->_('FPF_FLAG'), 'DEVICES' => fpframework()->_('FPF_DEVICES'), 'EVENTS' => fpframework()->_('FPF_EVENTS'), 'PERCENTAGE_DIFFERENCE_AGAINST_PREVIOUS_PERIOD' => firebox()->_('FB_PERCENTAGE_DIFFERENCE_AGAINST_PREVIOUS_PERIOD'), 'NO_CAMPAIGN_DATA_FOUND' => firebox()->_('FB_NO_CAMPAIGN_DATA_FOUND'), 'MOST_POPULAR_CAMPAIGNS' => firebox()->_('FB_MOST_POPULAR_CAMPAIGNS'), 'TOP_CAMPAIGNS' => firebox()->_('FB_TOP_CAMPAIGNS'), 'N/A' => fpframework()->_('FPF_N/A'), 'ALL_DAYS' => firebox()->_('FB_ALL_DAYS'), 'MONDAY' => firebox()->_('FB_MONDAY'), 'TUESDAY' => firebox()->_('FB_TUESDAY'), 'WEDNESDAY' => firebox()->_('FB_WEDNESDAY'), 'THURSDAY' => firebox()->_('FB_THURSDAY'), 'FRIDAY' => firebox()->_('FB_FRIDAY'), 'SATURDAY' => firebox()->_('FB_SATURDAY'), 'SUNDAY' => firebox()->_('FB_SUNDAY'), 'VIEW_HOURS' => firebox()->_('FB_VIEW_HOURS'), 'PATHS' => fpframework()->_('FPF_PATHS'), 'REFERRERS' => fpframework()->_('FPF_REFERRERS'), 'S' => fpframework()->_('FPF_S'), 'VIEW_CAMPAIGN_ANALYTICS' => firebox()->_('FB_VIEW_CAMPAIGN_ANALYTICS'), 'ACTIVATE' => fpframework()->_('FPF_ACTIVATE'), 'DEACTIVATE' => fpframework()->_('FPF_DEACTIVATE'), 'EDIT' => fpframework()->_('FPF_EDIT'), 'DELETE' => fpframework()->_('FPF_DELETE'), 'DUPLICATE' => fpframework()->_('FPF_DUPLICATE'), 'ARE_YOU_SURE_YOU_WANT_TO_DELETE_THIS_CAMPAIGN' => firebox()->_('FB_ARE_YOU_SURE_YOU_WANT_TO_DELETE_THIS_CAMPAIGN'), 'RECENT_CAMPAIGNS' => firebox()->_('FB_RECENT_CAMPAIGNS'), 'VIEW_ALL' => firebox()->_('FB_VIEW_ALL'), 'YOU_HAVENT_CREATED_ANY_CAMPAIGNS_YET' => firebox()->_('FB_YOU_HAVENT_CREATED_ANY_CAMPAIGNS_YET'), 'NEW_CAMPAIGN' => firebox()->_('FB_NEW_CAMPAIGN'), 'NUMBER_OF_VIEWS_IN_THE_LAST_30_DAYS' => firebox()->_('FB_NUMBER_OF_VIEWS_IN_THE_LAST_30_DAYS'), 'NUMBER_OF_CONVERSIONS_IN_THE_LAST_30_DAYS' => firebox()->_('FB_NUMBER_OF_CONVERSIONS_IN_THE_LAST_30_DAYS'), 'CONVERSION_RATE_IN_THE_LAST_30_DAYS' => firebox()->_('FB_CONVERSION_RATE_IN_THE_LAST_30_DAYS'), 'LOADING_CAMPAIGNS' => firebox()->_('FB_LOADING_CAMPAIGNS'), 'NO_CAMPAIGNS_FOUND' => firebox()->_('FB_NO_CAMPAIGNS_FOUND'), 'SEARCH_DOTS' => firebox()->_('FB_SEARCH_DOTS'), 'TODAY' => firebox()->_('FB_TODAY'), 'YESTERDAY' => firebox()->_('FB_YESTERDAY'), 'LAST_7_DAYS' => firebox()->_('FB_LAST_7_DAYS'), 'LAST_30_DAYS' => firebox()->_('FB_LAST_30_DAYS'), 'LAST_WEEK' => firebox()->_('FB_LAST_WEEK'), 'MONTH_TO_DATE' => firebox()->_('FB_MONTH_TO_DATE'), 'LAST_MONTH' => firebox()->_('FB_LAST_MONTH'), 'YEAR_TO_DATE' => firebox()->_('FB_YEAR_TO_DATE'), 'CUSTOM' => firebox()->_('FB_CUSTOM'), 'READ_MORE' => firebox()->_('FB_READ_MORE'), 'AVG_TIME_OPEN' => firebox()->_('FB_AVG_TIME_OPEN'), 'CONVERSION_RATE_TOOLTIP_DESC' => firebox()->_('FB_CONVERSION_RATE_TOOLTIP_DESC'), 'CONVERSIONS_TOOLTIP_DESC' => firebox()->_('FB_CONVERSIONS_TOOLTIP_DESC'), 'VS_PREVIOUS_PERIOD' => firebox()->_('FB_VS_PREVIOUS_PERIOD'), 'VIEWS_TOOLTIP_DESC' => firebox()->_('FB_VIEWS_TOOLTIP_DESC'), 'NO' => firebox()->_('FB_NO'), 'DATA_AVAILABLE' => firebox()->_('FB_DATA_AVAILABLE'), 'PERFORMANCE' => firebox()->_('FB_PERFORMANCE'), 'TRENDING_TEMPLATES' => firebox()->_('FB_TRENDING_TEMPLATES'), 'THERE_ARE_NO_TRENDING_TEMPLATES_TO_SHOW' => firebox()->_('FB_THERE_ARE_NO_TRENDING_TEMPLATES_TO_SHOW'), 'INSERT_TEMPLATE' => firebox()->_('FB_INSERT_TEMPLATE'), 'INSERT' => firebox()->_('FB_INSERT'), 'VIEW_ALL_ANALYTICS' => firebox()->_('FB_VIEW_ALL_ANALYTICS'), 'DAILY' => firebox()->_('FB_DAILY'), 'WEEKLY' => firebox()->_('FB_WEEKLY'), 'MONTHLY' => firebox()->_('FB_MONTHLY'), 'UPGRADE_TO_PRO' => fpframework()->_('FPF_UPGRADE_TO_PRO'), 'ALL_CAMPAIGNS' => firebox()->_('FB_ALL_CAMPAIGNS'), 'OVERVIEW' => fpframework()->_('FPF_OVERVIEW'), 'TO' => fpframework()->_('FPF_TO'), 'SHOWING_TOP_30_RESULTS' => firebox()->_('FB_SHOWING_TOP_30_RESULTS'), 'DAY_OF_THE_WEEK' => firebox()->_('FB_DAY_OF_THE_WEEK'), 'ANALYTICS' => fpframework()->_('FPF_ANALYTICS'), 'SALES_FUNNEL' => firebox()->_('FB_SALES_FUNNEL'), 'SALES_FUNNEL_LOCKED_COPY' => firebox()->_('FB_SALES_FUNNEL_LOCKED_COPY'), 'PURCHASE' => firebox()->_('FB_PURCHASE'), 'PURCHASES' => firebox()->_('FB_PURCHASES'), 'INTERACTIONS' => firebox()->_('FB_INTERACTIONS'), 'FUNNEL_VISUALIZATION' => firebox()->_('FB_FUNNEL_VISUALIZATION'), 'OVERALL_CONVERSION_RATE' => firebox()->_('FB_OVERALL_CONVERSION_RATE'), 'REVENUE_CONVERSIONS' => firebox()->_('FB_REVENUE_CONVERSIONS'), 'LITE' => fpframework()->_('FPF_LITE'), 'FREE' => fpframework()->_('FPF_FREE'), 'FROM' => firebox()->_('FB_FROM'), 'OF' => firebox()->_('FB_OF'), 'USERS' => firebox()->_('FB_USERS'), 'TOTAL' => firebox()->_('FB_TOTAL'), 'TOTAL_POPUP_IMPRESSIONS' => firebox()->_('FB_TOTAL_POPUP_IMPRESSIONS'), 'REVENUE' => firebox()->_('FB_REVENUE'), 'REVENUE_TOOLTIP_DESC' => firebox()->_('FB_REVENUE_TOOLTIP_DESC'), 'VIEW_THROUGH_REVENUE' => firebox()->_('FB_VIEW_THROUGH_REVENUE'), 'VIEW_THROUGH_REVENUE_TOOLTIP_DESC' => firebox()->_('FB_VIEW_THROUGH_REVENUE_TOOLTIP_DESC'), 'CONVERSION_THROUGH_REVENUE' => firebox()->_('FB_CONVERSION_THROUGH_REVENUE'), 'CONVERSION_THROUGH_REVENUE_TOOLTIP_DESC' => firebox()->_('FB_CONVERSION_THROUGH_REVENUE_TOOLTIP_DESC'), 'REVENUE_ROI' => firebox()->_('FB_REVENUE_ROI'), 'REVENUE_ROI_TOOLTIP_TITLE' => firebox()->_('FB_REVENUE_ROI_TOOLTIP_TITLE'), 'REVENUE_ROI_TOTAL_REVENUE_GENERATED' => firebox()->_('FB_REVENUE_ROI_TOTAL_REVENUE_GENERATED'), 'REVENUE_ROI_LITE_MESSAGE' => firebox()->_('FB_REVENUE_ROI_LITE_MESSAGE'), 'REVENUE_ROI_PRO_MESSAGE' => firebox()->_('FB_REVENUE_ROI_PRO_MESSAGE'), 'LAST_4_WEEKS' => firebox()->_('FB_LAST_4_WEEKS'), 'LAST_6_MONTHS' => firebox()->_('FB_LAST_6_MONTHS'), 'LAST_12_MONTHS' => firebox()->_('FB_LAST_12_MONTHS'), 'QUARTER_TO_DATE' => firebox()->_('FB_QUARTER_TO_DATE'), 'AVAILABLE_IN_PRO' => firebox()->_('FB_AVAILABLE_IN_PRO'), 'PLAN_COST' => firebox()->_('FB_PLAN_COST'), 'LIFETIME_REVENUE' => firebox()->_('FB_LIFETIME_REVENUE'), 'YOUR_ROI' => firebox()->_('FB_YOUR_ROI'), 'UNLOCK_REVENUE_ROI' => firebox()->_('FB_UNLOCK_REVENUE_ROI'), 'GROWTH' => firebox()->_('FB_GROWTH'), 'AVAILABLE_IN' => firebox()->_('FB_AVAILABLE_IN'), 'PRO' => firebox()->_('FB_PRO'), 'BASIC' => firebox()->_('FB_BASIC'), 'UPGRADE_TO_X' => fpframework()->_('FPF_UPGRADE_TO_X'), 'UPGRADE_TO_X_PLAN' => fpframework()->_('FPF_UPGRADE_TO_X_PLAN'), 'FEATURE_AVAILABLE_IN_X_PLAN' => firebox()->_('FB_FEATURE_AVAILABLE_IN_X_PLAN'), 'SORRY_FEATURE_NOT_AVAILABLE_IN_YOUR_PLAN' => fpframework()->_('FPF_SORRY_FEATURE_NOT_AVAILABLE_IN_YOUR_PLAN'), 'PRO_MODAL_IS_PRO_FEATURE' => fpframework()->_('FPF_PRO_MODAL_IS_PRO_FEATURE'), 'PRO_MODAL_WERE_SORRY' => fpframework()->_('FPF_PRO_MODAL_WERE_SORRY'), 'PRO_MODAL_PERCENTAGE_OFF' => fpframework()->_('FPF_PRO_MODAL_PERCENTAGE_OFF'), 'CLICKS_TOOLTIP_DESC' => firebox()->_('FB_CLICKS_TOOLTIP_DESC'), 'VIEW_REVENUE' => firebox()->_('FB_VIEW_REVENUE'), 'CONVERSION_REVENUE' => firebox()->_('FB_CONVERSION_REVENUE'), ] ); wp_localize_script('firebox-admin', 'fbox_admin_js_object', $data); } /** * Returns the timezone in format: +-XX:XX * * @return string */ private function getTimezone() { $offset = get_option('gmt_offset'); $hours = (int) $offset; $minutes = abs(($offset - (int) $offset) * 60); return sprintf('%+03d:%02d', $hours, $minutes); } /** * Redirect to FireBox dashboard after plugin activation * * @return void */ public function redirectAfterActivation() { // Check if activation redirect option exists if (!get_option('firebox_activation_redirect')) { return; } // Clear the option delete_option('firebox_activation_redirect'); // Only redirect on the plugins page if (!isset($_GET['activate'])) //phpcs:ignore WordPress.Security.NonceVerification.Recommended { return; } // Prevent redirect if activating multiple plugins if (is_network_admin() || isset($_GET['activate-multi'])) //phpcs:ignore WordPress.Security.NonceVerification.Recommended { return; } // Redirect to FireBox dashboard wp_safe_redirect(admin_url('admin.php?page=firebox')); exit; } }