Файловый менеджер - Редактировать - /home/ephorei/www/wp-content/plugins/suretriggers/src/Integrations/fluentcommunity/triggers/course-published.php
Назад
<?php /** * CoursePublished. * php version 5.6 * * @category CoursePublished * @package SureTriggers * @author BSF * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 * @link https://www.brainstormforce.com/ * @since 1.0.0 */ namespace SureTriggers\Integrations\FluentCommunity\Triggers; use SureTriggers\Controllers\AutomationController; use SureTriggers\Traits\SingletonLoader; if ( ! class_exists( 'CoursePublished' ) ) : /** * CoursePublished * * @category CoursePublished * @package SureTriggers * @since 1.0.0 */ class CoursePublished { /** * Integration type. * * @var string */ public $integration = 'FluentCommunity'; /** * Trigger name. * * @var string */ public $trigger = 'fc_course_published'; use SingletonLoader; /** * Constructor * * @since 1.0.0 */ public function __construct() { add_action( 'fluent_community/course/published', [ $this, 'trigger_listener' ], 10, 1 ); } /** * Trigger listener. * * @param object $course The newly created course object. * @return void */ public function trigger_listener( $course ) { if ( empty( $course ) ) { return; } // Prepare context with the course object. $context = [ 'course' => $course, ]; AutomationController::sure_trigger_handle_trigger( [ 'trigger' => $this->trigger, 'context' => $context, ] ); } } // Initialize the class. CoursePublished::get_instance(); endif;
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка