PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
weforms
/
includes
<?php /** * Importer Manager * * @since 1.1.0 */ class WeForms_Importer_Manager { public function __construct() { $this->get_importers(); } /** * Fetch and instantiate all the importers * * @return array */ public function get_importers() { require_once WEFORMS_INCLUDES . '/importer/class-importer-abstract.php'; require_once WEFORMS_INCLUDES . '/importer/class-importer-cf7.php'; require_once WEFORMS_INCLUDES . '/importer/class-importer-gf.php'; require_once WEFORMS_INCLUDES . '/importer/class-importer-wpforms.php'; require_once WEFORMS_INCLUDES . '/importer/class-importer-ninja-forms.php'; require_once WEFORMS_INCLUDES . '/importer/class-importer-caldera-forms.php'; $importers = [ 'cf7' => new WeForms_Importer_CF7(), 'gravity' => new WeForms_Importer_GF(), 'wpforms' => new WeForms_Importer_WPForms(), 'ninjaforms' => new WeForms_Importer_Ninja_Forms(), 'caldera' => new WeForms_Importer_Caldera_Forms(), ]; return apply_filters( 'weforms_form_importers', $importers ); } }
[+]
..
[-] class-form-entry-manager.php
[edit]
[-] class-frontend-form.php
[edit]
[-] class-ajax-upload.php
[edit]
[+]
importer
[-] class-ajax.php
[edit]
[+]
api
[+]
fields
[-] class-notification.php
[edit]
[-] class-form-entry.php
[edit]
[-] class-importer-manager.php
[edit]
[+]
compat
[-] functions.php
[edit]
[-] class-field-manager.php
[edit]
[+]
library
[-] class-integration-manager.php
[edit]
[+]
email
[-] class-form-widget.php
[edit]
[+]
templates
[-] class-weforms-api.php
[edit]
[-] class-template-manager.php
[edit]
[+]
integrations
[-] class-installer.php
[edit]
[-] class-scripts-styles.php
[edit]
[-] country-list.php
[edit]
[-] class-form.php
[edit]
[-] class-form-manager.php
[edit]
[-] class-upgrades.php
[edit]
[-] class-emailer.php
[edit]
[-] class-form-preview.php
[edit]
[+]
admin
[-] class-dokan-integration.php
[edit]