Current Path : /var/www/wptbox/wp-content/plugins/suretriggers/src/Integrations/asgaros/actions/ |
Current File : /var/www/wptbox/wp-content/plugins/suretriggers/src/Integrations/asgaros/actions/create-topic.php |
<?php /** * CreateTopic. * php version 5.6 * * @category CreateTopic * @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\Asgaros\Actions; use Exception; use SureTriggers\Integrations\AutomateAction; use SureTriggers\Integrations\WordPress\WordPress; use SureTriggers\Traits\SingletonLoader; use AsgarosForumAdmin; use AsgarosForum; /** * CreateTopic * * @category CreateTopic * @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 CreateTopic extends AutomateAction { /** * Integration type. * * @var string */ public $integration = 'Asgaros'; /** * Action name. * * @var string */ public $action = 'asgaros_create_topic'; use SingletonLoader; /** * Register a action. * * @param array $actions actions. * @return array */ public function register( $actions ) { $actions[ $this->integration ][ $this->action ] = [ 'label' => __( 'Create a topic', 'suretriggers' ), 'action' => $this->action, 'function' => [ $this, 'action_listener' ], ]; return $actions; } /** * Action listener. * * @param int $user_id user_id. * @param int $automation_id automation_id. * @param array $fields fields. * @param array $selected_options selectedOptions. * @throws Exception Exception. * * @return bool|array|void */ public function _action_listener( $user_id, $automation_id, $fields, $selected_options ) { if ( ! class_exists( 'AsgarosForum' ) ) { return false; } $asgaros_forum = new AsgarosForum(); $forum_id = $selected_options['forum_id']; $topic_title = $selected_options['topic_title']; $topic_description = $selected_options['topic_description']; $author_id = $selected_options['author_id']; $topic_details = $asgaros_forum->content->insert_topic( $forum_id, $topic_title, $topic_description, $author_id ); $topic = (array) $asgaros_forum->content->get_topic( $topic_details->topic_id ); $post = (array) $asgaros_forum->content->get_post( $topic_details->post_id ); $user = WordPress::get_user_context( $author_id ); return array_merge( $topic, $post, $user ); } } CreateTopic::get_instance();