[ 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: activity-log.php
<?php namespace ElementorPro\Modules\Forms\Actions; use ElementorPro\Modules\Forms\Classes\Action_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Integration with Activity Log */ class Activity_Log extends Action_Base { public function get_name() { return 'activity-log'; } public function get_label() { return 'Activity Log'; } public function register_settings_section( $widget ) {} public function on_export( $element ) {} public function aal_init_roles( $roles ) { $roles['manage_options'][] = 'Elementor Forms'; return $roles; } public function run( $record, $ajax_handler ) { aal_insert_log( [ 'action' => 'New Record', 'object_type' => 'Elementor Forms', 'object_id' => $record->get_form_settings( 'id' ), 'object_name' => $record->get_form_settings( 'form_name' ), ] ); } public function __construct() { add_filter( 'aal_init_roles', [ $this, 'aal_init_roles' ] ); } }