* @link https://www.fireplugins.com * @copyright Copyright © 2024 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Controllers; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class Analytics extends BaseController { /** * Render view * * @return void */ public function render() { firebox()->renderer->admin->render('pages/analytics'); } public function addMedia() { wp_register_script('firebox-react', 'https://unpkg.com/react@18/umd/react.production.min.js', [], FBOX_VERSION, true); wp_enqueue_script('firebox-react'); wp_register_script('firebox-react-dom', 'https://unpkg.com/react-dom@18/umd/react-dom.production.min.js', [], FBOX_VERSION, true); wp_enqueue_script('firebox-react-dom'); wp_register_script( 'firebox-analytics', FBOX_MEDIA_ADMIN_URL . 'js/analytics.js', ['wp-api-fetch'], FBOX_VERSION, true ); wp_enqueue_script('firebox-analytics'); } }