action_name = __( 'Reset Quiz Attempts', 'wp-marketing-automations-pro' ); $this->action_desc = __( 'This action resets a user quiz attempt count', 'wp-marketing-automations-pro' ); $this->required_fields = array( 'user_id', 'quiz_id' ); $this->action_priority = 35; $this->support_v2 = true; } public static function get_instance() { if ( null === self::$ins ) { self::$ins = new self(); } return self::$ins; } /** * Localize data for html fields for the current action. */ public function admin_enqueue_assets() { if ( BWFAN_Common::is_load_admin_assets( 'automation' ) ) { $data = $this->get_view_data(); BWFAN_Core()->admin->set_actions_js_data( $this->get_class_slug(), 'quizzes', $data ); } } public function get_view_data() { $quizzes = get_posts( array( 'post_type' => 'sfwd-quiz', 'posts_per_page' => - 1, 'status' => 'publish', 'suppress_filters' => false ) ); $quiz_array = array(); foreach ( $quizzes as $quiz ) { $quiz_array[ $quiz->ID ] = $quiz->post_title; } return $quiz_array; } /** * Show the html fields for the current action. */ public function get_view() { ?> ID : 0; } return $data_to_set; } public function make_v2_data( $automation_data, $step_data ) { $data_to_set = array(); $data_to_set['user_id'] = isset( $step_data['user_id'] ) ? $step_data['user_id'] : 0; $data_to_set['quiz_id'] = isset( $step_data['quiz'][0]['id'] ) ? $step_data['quiz'][0]['id'] : 0; if ( empty( $data_to_set['user_id'] ) ) { $email = ( isset( $automation_data['global']['email'] ) && is_email( $automation_data['global']['email'] ) ) ? $automation_data['global']['email'] : ''; $user = is_email( $email ) ? get_user_by( 'email', $email ) : ''; $data_to_set['user_id'] = $user instanceof WP_User ? $user->ID : 0; } return $data_to_set; } /** * Execute the current action. * Return 3 for successful execution , 4 for permanent failure. * * @param $action_data * * @return array */ public function execute_action( $action_data ) { $this->set_data( $action_data['processed_data'] ); $result = $this->process(); if ( true === $result ) { return array( 'status' => 3, 'message' => 'Quiz Attempts Reset Done' ); } return $result; } /** * Process and do the actual processing for the current action. * This function is present in every action class. */ public function process() { $is_required_fields_present = $this->check_fields( $this->data, $this->required_fields ); if ( false === $is_required_fields_present ) { return $this->show_fields_error(); } $quiz_id = absint( $this->data['quiz_id'] ); if ( empty( $quiz_id ) ) { return array( 'status' => 4, 'message' => __( 'Quiz was not selected', 'wp-marketing-automations-pro' ), ); } $user_id = $this->data['user_id']; $user = get_userdata( $user_id ); if ( false === $user ) { return array( 'status' => 4, 'message' => __( 'User does not exists', 'wp-marketing-automations-pro' ), ); } learndash_remove_user_quiz_attempt( $user_id, array( 'quiz' => $quiz_id ) ); return true; } public function process_v2() { $quiz_id = absint( $this->data['quiz_id'] ); if ( empty( $quiz_id ) ) { return $this->skipped_response( __( 'Course was not selected', 'wp-marketing-automations-pro' ) ); } $user_id = $this->data['user_id']; $user = get_userdata( $user_id ); if ( false === $user ) { return $this->skipped_response( __( 'User does not exists', 'wp-marketing-automations-pro' ) ); } learndash_remove_user_quiz_attempt( $user_id, array( 'quiz' => $quiz_id ) ); return $this->success_message( __( 'Quiz attempt reset successfully.', 'wp-marketing-automations-pro' ) ); } public function get_fields_schema() { return [ [ "id" => 'quiz', "label" => __( 'Quiz', 'wp-marketing-automations-pro' ), "type" => 'custom_search', 'autocompleterOption' => [ 'path' => 'ld_quiz', 'slug' => 'ld_quiz', 'labelText' => 'quiz' ], "allowFreeTextSearch" => false, "required" => true, "errorMsg" => __( "Quiz is required", 'wp-marketing-automations-pro' ), "multiple" => false, "description" => __( "Select the quiz for which you want to reset the attempts of", 'wp-marketing-automations-pro' ) ], ]; } public function get_desc_text( $data ) { $data = json_decode( wp_json_encode( $data ), true ); if ( ! isset( $data['quiz'] ) || empty( $data['quiz'] ) ) { return ''; } $quizzes = []; foreach ( $data['quiz'] as $quiz ) { if ( ! isset( $quiz['name'] ) || empty( $quiz['name'] ) ) { continue; } $quizzes[] = $quiz['name']; } return $quizzes; } } /** * Register this action. Registering the action will make it eligible to see it on single automation screen in select actions dropdown. */ return 'BWFAN_LD_Reset_Quiz_Attempts';