PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
themes
/
flatsome
/
inc
/
builder
/
core
/
server
/
src
/
Post
<?php namespace UxBuilder\Post; use UxBuilder\Transformers\ArrayToString; use UxBuilder\Elements\ElementOptions; class PostString { protected $transformer; protected $post; public function __construct( $post ) { $this->transformer = new ArrayToString(); $this->post = $post; } }
[-] Post.php
[edit]
[-] PostArray.php
[edit]
[-] PostOptions.php
[edit]
[-] PostString.php
[edit]
[+]
..