app = $app; } /** * Render the page for native global settings components * * @throws \Exception */ public function render() { $this->enqueue(); $this->app->view->render('admin.settings.settings'); } /** * Enqueue necessary resources. * * @throws \Exception */ public function enqueue() { wp_enqueue_script('fluentform-global-settings-js', fluentformMix("js/fluentform-global-settings.js"), ['jquery'], $this->app->getVersion(), false ); wp_localize_script('fluentform-global-settings-js', 'FluentFormApp', [ 'plugin' => $this->app->getSlug(), ]); } }