Current Path : /storage/v11800/testsharplanding/public_html/wp-content/plugins/ninja-forms/includes/Actions/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/testsharplanding/public_html/wp-content/plugins/ninja-forms/includes/Actions/ExportDataRequest.php
<?php if ( ! defined( 'ABSPATH' ) ) exit;

/**
 * Class NF_Actions_ExportPersonalData
 */
final class NF_Actions_ExportDataRequest extends NF_Abstracts_Action
{
	/**
	 * @var string
	 */
	protected $_name  = 'exportdatarequest';

	/**
	 * @var array
	 */
	protected $_tags = array();

    /**
     * @var string
     */
    protected $_documentation_url = 'https://ninjaforms.com/docs/export-data-request-action/';

	/**
	 * @var string
	 */
	protected $_timing = 'late';

	/**
	 * @var int
	 */
	protected $_priority = 10;

    /**
     * @var string
     */
    protected $_group = 'core';

	/**
	 * Constructor
	 */
	public function __construct()
	{
		parent::__construct();

		$this->_nicename = esc_html__( 'Export Data Request', 'ninja-forms' );

		$settings = Ninja_Forms::config( 'ActionExportDataRequestSettings' );
		$this->_settings = array_merge( $this->_settings, $settings );
	}

	/*
	* PUBLIC METHODS
	*/

	public function save( $action_settings )
	{

	}

	/**
	 * Creates a Export Personal Data request for the user with the email
	 * provided
	 *
	 * @param $action_settings
	 * @param $form_id
	 * @param $data
	 *
	 * @return array
	 */
	public function process( $action_settings, $form_id, $data )
	{
		$data = array();

		if( isset( $data['settings']['is_preview'] ) && $data['settings']['is_preview'] ){
			return $data;
		}

		// get the email setting
		$email = $action_settings[ 'email' ];

		// create request for user
		$request_id = wp_create_user_request( $email,
			'export_personal_data' );

		/**
		 * Basically ignore if we get a user error as it will be one of two
		 * things.
		 *
		 * 1) The email in question is already in the erase data request queue
		 * 2) The email does not belong to an actual user.
		 */
		if( ! $request_id instanceof WP_Error ) {
			wp_send_user_request( $request_id );
		}

		return $data;
	}
}

Log In ‹ Affy Pharma Pvt Ltd — WordPress

Powered by WordPress

← Go to Affy Pharma Pvt Ltd