芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluentform/app/Modules/Widgets/ElementorWidget.php
app = $app; add_action('elementor/widgets/register', [$this, 'init_widgets']); } public function init_widgets($widgets_manager) { $this->enqueueAssets(); if (file_exists(FLUENTFORM_DIR_PATH . 'app/Modules/Widgets/FluentFormWidget.php')) { require_once FLUENTFORM_DIR_PATH . 'app/Modules/Widgets/FluentFormWidget.php'; $widgets_manager->register(new FluentFormWidget()); } } public function enqueueAssets() { wp_enqueue_style('fluentform-elementor-widget', fluentformMix('css/fluent-forms-elementor-widget.css'), [], FLUENTFORM_VERSION); } }