| Server IP : 145.239.37.162 / Your IP : 216.73.217.81 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www/wp-content/plugins/gravityforms/includes/query/ |
Upload File : |
<?php
/**
* The Gravity Forms Query JSON Literal class.
*/
class GF_Query_JSON_Literal extends GF_Query_Literal{
/**
* @var int|string|float The value.
*/
private $_value;
/**
* A literal value.
*
* @param string $value
*/
public function __construct( $value ) {
if ( is_string( $value ) ) {
$this->_value = $value;
}
}
/**
* Get SQL for this.
*
* @param GF_Query $query The query.
* @param string $delimiter The delimiter for arrays.
*
* @return string The SQL.
*/
public function sql( $query, $delimiter = '' ) {
global $wpdb;
if ( is_string( $this->value ) ) {
$value = trim( json_encode( $this->value ), '"' );
$value = str_replace( '\\', '\\\\', $value );
return $wpdb->prepare( '%s', $value );
}
return '';
}
/**
* Proxy read-only values.
*/
public function __get( $key ) {
switch ( $key ) :
case 'value':
return $this->_value;
endswitch;
}
public function __isset( $key ) {
return in_array( $key, array( 'value' ) );
}
}