plugin install

This commit is contained in:
Tony Volpe
2024-06-18 17:29:05 -04:00
parent e1aaedd1ae
commit 41f50eacc4
5880 changed files with 1057631 additions and 39681 deletions

View File

@@ -0,0 +1,124 @@
<?php
namespace Gravity_Forms\Gravity_Forms\Save_Form\Config;
use Gravity_Forms\Gravity_Forms\Config;
use Gravity_Forms\Gravity_Forms\Save_Form\Endpoints\GF_Save_Form_Endpoint_Admin;
class GF_Admin_Form_Save_Config extends Config\GF_Config {
const JSON_START_STRING = 'GFORMS_SAVE_REQUEST_JSON_START';
const JSON_END_STRING = 'GFORMS_SAVE_REQUEST_JSON_END';
/**
* The object name for this config.
*
* @since 2.6
*
* @var string
*/
protected $name = 'gform_admin_config';
/**
* The ID of the script to localize the data to.
*
* @since 2.6
*
* @var string
*/
protected $script_to_localize = 'gform_gravityforms_admin_vendors';
/**
* An instance of the GFForms class to use for calling common static functions.
*
* @since 2.6
*
* @var \GFForms
*/
protected $gf_forms;
/**
* An instance of the GFAPI class to use for calling static GForms API functions.
*
* @since 2.6
*
* @var \GFAPI
*/
protected $gf_api;
/**
* GF_Admin_Form_Save_Config constructor.
*
* @since 2.6
*
* @param Config\GF_Config_Data_Parser $parser Parses a given data array to return either Live or Mock values.
* @param array $dependencies Array of dependency objects.
*/
public function __construct( Config\GF_Config_Data_Parser $parser, $dependencies ) {
$this->gf_forms = $dependencies['gf_forms'];
$this->gf_api = $dependencies['gf_api'];
parent::__construct( $parser );
}
public function should_enqueue() {
return \GFForms::is_gravity_page();
}
public function data() {
$gf_forms = $this->gf_forms;
return array(
'admin_save_form' => array(
'data' => array(
'is_form_editor' => $gf_forms::get_page() === 'form_editor',
'is_quick_editor' => false,
'form' => $this->get_form(),
'json_containers' => array(
GF_Admin_Form_Save_Config::JSON_START_STRING,
GF_Admin_Form_Save_Config::JSON_END_STRING,
),
),
'endpoints' => $this->get_endpoints(),
),
);
}
/**
* Retrieves the form if an ID found in the the query parameters.
*
* @since 2.6
*
* @return false|array
*/
private function get_form() {
$gf_forms = $this->gf_forms;
$gf_api = $this->gf_api;
$form_id = $gf_forms::get_page() === 'form_editor' ? rgget( 'id' ) : rgget( 'form_id' );
if ( $form_id ) {
return $gf_api::get_form( $form_id );
}
return false;
}
/**
* Returns the endpoints for saving the form in the admin area.
*
* @since 2.6
*
* @return \array[][]
*/
private function get_endpoints() {
return array(
'admin_save_form' => array(
'action' => array(
'value' => GF_Save_Form_Endpoint_Admin::ACTION_NAME,
'default' => 'mock_endpoint',
),
'nonce' => array(
'value' => wp_create_nonce( GF_Save_Form_Endpoint_Admin::ACTION_NAME ),
'default' => 'nonce',
),
),
);
}
}