[ 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
/
suretriggers
/
src
/
Integrations
/
elementor-pro
/
triggers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 elementor-new-submit-form.php
2,729 B
SET
[ EDIT ]
|
[ DEL ]
📄 elementor-post-published.php
2,704 B
SET
[ EDIT ]
|
[ DEL ]
📄 elementor-submit-form-specific-value.php
3,044 B
SET
[ EDIT ]
|
[ DEL ]
📄 elementor-submit-form.php
2,639 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: elementor-post-published.php
<?php /** * ElementorPostPublished. * php version 5.6 * * @category ElementorPostPublished * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\ElementorPro\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; use WP_Post; if ( ! class_exists( 'ElementorPostPublished' ) ) : /** * ElementorPostPublished * * @category ElementorPostPublished * @package SureTriggers * @author BSF <username@example.com> * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ class ElementorPostPublished { /** * Integration type. * * @var string */ public $integration = 'ElementorPro'; /** * Trigger name. * * @var string */ public $trigger = 'elementor_post_published'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); } /** * Register action. * * @param array $triggers trigger data. * @return array */ public function register( $triggers ) { $triggers[ $this->integration ][ $this->trigger ] = [ 'label' => __( 'Post Published with Elementor', 'suretriggers' ), 'action' => 'new_user_submits_elementor_form', 'common_action' => 'transition_post_status', 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 3, ]; return $triggers; } /** * Trigger listener * * @param int $new_status checks new status. * @param int $old_status checks old status. * @param WP_Post $post post object. * @since 1.0.0 * * @return void */ public function trigger_listener( $new_status, $old_status, $post ) { // if post is not published with Elementor. $created_by_elem = get_post_meta( $post->ID, '_elementor_edit_mode', true ); if ( empty( $created_by_elem ) ) { return; } if ( $old_status === $new_status ) { return; } if ( 'publish' === $new_status && ! wp_is_post_revision( $post->ID ) && ! wp_is_post_autosave( $post->ID ) ) { $context = [ 'post_id' => $post->ID, 'post' => $post, 'post_type' => $post->post_type, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } } ElementorPostPublished::get_instance(); endif;