OwlCyberSecurity - MANAGER
Edit File: Settings.php
<?php namespace FluentForm\App\Modules\Renderer\GlobalSettings; use FluentForm\App\Modules\Form\AkismetHandler; use FluentForm\App\Modules\Registerer\TranslationString; use FluentForm\Framework\Foundation\Application; class Settings { /** * App instance * * @var \FluentForm\Framework\Foundation\Application */ protected $app; /** * GlobalSettings constructor. * * @param \FluentForm\Framework\Foundation\Application $app */ public function __construct(Application $app) { $this->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'); wp_localize_script('fluentform-global-settings-js', 'FluentFormApp', [ 'plugin' => $this->app->config->get('app.slug'), 'akismet_activated' => AkismetHandler::isPluginEnabled(), 'has_pro' => defined('FLUENTFORMPRO'), 'form_settings_str' => TranslationString::getGlobalSettingsI18n() ]); } }