Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/wordpress/triggers/insert-comment.php
Назад
<?php /** * InsertComment. * php version 5.6 * * @category InsertComment * @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\Wordpress\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Integrations\WordPress\WordPress; use SureTriggers\Traits\SingletonLoader; use WP_Post; if ( ! class_exists( 'InsertComment' ) ) : /** * InsertComment * * @category InsertComment * @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 InsertComment { /** * Integration type. * * @var string */ public $integration = 'WordPress'; /** * Trigger name. * * @var string */ public $trigger = 'wp_insert_comment'; 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 ] = [ 'event_name' => 'wp_insert_comment', 'label' => __( 'User submits a comment on a post', 'suretriggers' ), 'action' => $this->trigger, 'function' => [ $this, 'trigger_listener' ], 'priority' => 10, 'accepted_args' => 2, ]; return $triggers; } /** * Trigger listener * * @param int $comment_id comment id. * @param object|array $comment comment. * @since 1.0.0 * * @return void */ public function trigger_listener( $comment_id, $comment ) { if ( is_object( $comment ) ) { $comment = get_object_vars( $comment ); } $post = get_post( absint( $comment['comment_post_ID'] ) ); if ( ! $post instanceof WP_Post ) { return; } $user_id = (int) $comment['user_id']; $context['comment_id'] = $comment_id; $context['comment'] = $comment['comment_content']; $context['comment_author'] = $comment['comment_author']; $context['comment_author_email'] = $comment['comment_author_email']; $context['comment_date'] = $comment['comment_date']; $context['post'] = $post->ID; $context['post_author'] = get_the_author_meta( 'display_name', (int) $post->post_author ); $context['post_title'] = $post->post_title; $context['post_link'] = get_the_permalink( $post->ID ); $context = array_merge( $context, WordPress::get_user_context( $user_id ) ); AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } InsertComment::get_instance(); endif;
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка