芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Modules/Renderer/GlobalSettings/Settings.php
app = $app; } /** * Render the page for native global settings components * * @throws \Exception */ public function render() { $this->enqueue(); $this->app->view->render('admin.globalSettings.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() ]); } }