PATH:
home
/
lab2454c
/
dansact.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
fluent-forms
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * WP_Webhooks_Integrations_fluent_forms Class * * This class integrates all Fluent Forms related features and endpoints * * @since 4.2.2 */ class WP_Webhooks_Integrations_fluent_forms { public function is_active(){ return defined( 'FLUENTFORM' ); } public function get_details(){ $integration_url = plugin_dir_url( __FILE__ ); return array( 'name' => 'Fluent Forms', 'icon' => $integration_url . '/assets/img/icon-fluent-forms.png', ); } }
[-] index.php
[edit]
[+]
..
[+]
triggers
[+]
helpers
[+]
assets
[+]
actions
[-] fluent-forms.php
[edit]