| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/themes/Divi/includes/builder/ |
Upload File : |
<?php
/**
* Represent a simple value or a dynamic one.
* Used for module attributes and content.
*
* @since 3.17.2
*/
class ET_Builder_Value {
/**
* Flag whether the value is static or dynamic.
*
* @since 3.17.2
*
* @var bool
*/
protected $dynamic = false;
/**
* Value content. Represents the dynamic content type when dynamic.
*
* @since 3.17.2
*
* @var string
*/
protected $content = '';
/**
* Array of dynamic content settings.
*
* @since 3.17.2
*
* @var mixed[]
*/
protected $settings = array();
/**
* ET_Builder_Value constructor.
*
* @since 3.17.2
*
* @param boolean $dynamic
* @param string $content
* @param array $settings
*/
public function __construct( $dynamic, $content, $settings = array() ) {
$this->dynamic = $dynamic;
$this->content = $content;
$this->settings = $settings;
}
/**
* Check if the value is dynamic or not.
*
* @since 3.17.2
*
* @return bool
*/
public function is_dynamic() {
return $this->dynamic;
}
/**
* Retrieve the value content.
*
* @since ??
*
* @return string
*/
public function get_content() {
return $this->content;
}
/**
* Get the resolved content.
*
* @since 3.17.2
*
* @param integer $post_id
*
* @return string
*/
public function resolve( $post_id ) {
if ( ! $this->dynamic ) {
return $this->content;
}
return et_builder_resolve_dynamic_content( $this->content, $this->settings, $post_id, 'display' );
}
/**
* Get the static content or a serialized representation of the dynamic one.
*
* @since 3.17.2
*
* @return string
*/
public function serialize() {
if ( ! $this->dynamic ) {
return $this->content;
}
return et_builder_serialize_dynamic_content( $this->dynamic, $this->content, $this->settings );
}
}