X7ROOT File Manager
Current Path:
/home/magneti1/public_html/wp-content/plugins/everest-forms/includes
home
/
magneti1
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
ðŸ“
..
ðŸ“
Helpers
ðŸ“
RestApi
ðŸ“
abstracts
ðŸ“
admin
ðŸ“
blocks
📄
class-everest-forms.php
(13.76 KB)
📄
class-evf-ajax.php
(71.97 KB)
📄
class-evf-autoloader.php
(1.92 KB)
📄
class-evf-background-process-import-entries.php
(5.15 KB)
📄
class-evf-background-updater.php
(3.27 KB)
📄
class-evf-cache-helper.php
(2.32 KB)
📄
class-evf-cron.php
(1.83 KB)
📄
class-evf-deprecated-action-hooks.php
(3.91 KB)
📄
class-evf-deprecated-filter-hooks.php
(3.64 KB)
📄
class-evf-emails.php
(19.32 KB)
📄
class-evf-fields.php
(3.58 KB)
📄
class-evf-form-handler.php
(13.66 KB)
📄
class-evf-form-task.php
(70.19 KB)
📄
class-evf-forms-features.php
(1.49 KB)
📄
class-evf-frontend-scripts.php
(15.58 KB)
📄
class-evf-install.php
(20.96 KB)
📄
class-evf-integrations.php
(3.3 KB)
📄
class-evf-log-levels.php
(2.61 KB)
📄
class-evf-logger.php
(8.27 KB)
📄
class-evf-post-types.php
(5.13 KB)
📄
class-evf-privacy.php
(7.41 KB)
📄
class-evf-report-cron.php
(6.93 KB)
📄
class-evf-reporting.php
(3.48 KB)
📄
class-evf-session-handler.php
(8.02 KB)
📄
class-evf-shortcodes.php
(2.04 KB)
📄
class-evf-smart-tags.php
(19.59 KB)
📄
class-evf-template-loader.php
(13.08 KB)
📄
class-evf-validation.php
(934 B)
ðŸ“
elementor
📄
evf-conditional-functions.php
(1.21 KB)
📄
evf-core-functions.php
(197.64 KB)
📄
evf-deprecated-functions.php
(6.22 KB)
📄
evf-entry-functions.php
(9.22 KB)
📄
evf-formatting-functions.php
(25.18 KB)
📄
evf-notice-functions.php
(6.23 KB)
📄
evf-template-functions.php
(1.2 KB)
📄
evf-template-hooks.php
(439 B)
📄
evf-update-functions.php
(16.68 KB)
ðŸ“
export
ðŸ“
fields
ðŸ“
interfaces
ðŸ“
libraries
ðŸ“
log-handlers
ðŸ“
shortcodes
ðŸ“
stats
ðŸ“
templates
Editing: class-evf-integrations.php
<?php /** * EverestForms Integrations class * * Loads Integrations into EverestForms. * * @package EverestForms/Classes/Integrations * @version 1.2.1 */ defined( 'ABSPATH' ) || exit; /** * Integrations class. */ class EVF_Integrations { /** * Array of integrations. * * @var array */ public $integrations = array(); /** * Initialize integrations. */ public function __construct() { do_action( 'everest_forms_integrations_init' ); $load_integrations = apply_filters( 'everest_forms_integrations', array() ); // Load integration classes. foreach ( $load_integrations as $integration ) { $load_integration = new $integration(); $this->integrations[ $load_integration->id ] = $load_integration; } } /** * Return loaded integrations. * * @return array */ public function get_integrations() { $default_integrations = array(); if ( ! defined( 'EFP_PLUGIN_FILE' ) ) { $default_integrations = array( 'dropbox' => (object) array( 'id' => 'dropbox', 'method_title' => 'Dropbox', 'icon' => plugins_url( 'assets/images/integration-image/dropbox.png', EVF_PLUGIN_FILE ), 'method_description' => 'Dropbox Integration with Everest Forms', 'account_status' => 'upgrade-modal', 'upgrade' => 'upgrade', 'vedio_id' => '5Vt82fN0swo', ), 'google_drive' => (object) array( 'id' => 'google_drive', 'method_title' => 'Google Drive', 'icon' => plugins_url( 'assets/images/integration-image/google-drive.png', EVF_PLUGIN_FILE ), 'method_description' => 'Google Drive Integration with Everest Forms', 'account_status' => 'upgrade-modal', 'upgrade' => 'upgrade', 'vedio_id' => '0g-dfhMy1Yo', ), 'mailchimp' => (object) array( 'id' => 'mailchimp', 'method_title' => 'MailChimp', 'icon' => plugins_url( 'assets/images/integration-image/mailchimp.png', EVF_PLUGIN_FILE ), 'method_description' => 'MailChimp Integration with Everest Forms', 'account_status' => 'upgrade-modal', 'upgrade' => 'upgrade', 'vedio_id' => 'FhFsHdAIXwE', ), 'google_sheets' => (object) array( 'id' => 'google_sheets', 'method_title' => 'Google Sheets', 'icon' => plugins_url( 'assets/images/integration-image/google-sheets.png', EVF_PLUGIN_FILE ), 'method_description' => 'Google Sheets Integration with Everest Forms', 'account_status' => 'upgrade-modal', 'upgrade' => 'upgrade', 'vedio_id' => 'tvS6Y_rNBfs', ), 'convertkit' => (object) array( 'id' => 'convertkit', 'method_title' => 'ConvertKit', 'icon' => plugins_url( 'assets/images/integration-image/convertkit.png', EVF_PLUGIN_FILE ), 'method_description' => 'Marketing automation can be hard to wrap your brain around, but with ConvertKit, it’s easy.', 'account_status' => 'upgrade-modal', 'upgrade' => 'upgrade', 'vedio_id' => 'GvqPVCK7Ws8', ), ); } $this->integrations = array_merge( $this->integrations, $default_integrations ); return $this->integrations; } }
Upload File
Create Folder