| Server IP : 172.67.159.97 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/cornerstone/includes/classes/Parsy/Util/ |
Upload File : |
<?php
namespace Themeco\Cornerstone\Parsy\Util;
use Themeco\Cornerstone\Parsy\Serializer;
class Token implements \JsonSerializable {
protected $type;
protected $content = null;
public function __construct($type, $content = null) {
$this->type = $type;
$this->content = $content;
}
public function content() {
return $this->content;
}
public function setContent($content) {
$this->content = $content;
}
public function type() {
return $this->type;
}
public function is($type) {
return $this->type === $type;
}
#[\ReturnTypeWillChange]
public function jsonSerialize() {
if (Serializer::isActive()) {
$type = Serializer::index($this->type);
return [ $type => $this->content ];
}
return [ 'node' => $this->type, 'content' => $this->content ];
}
}