File: /home/lucendi/www/wp-content/plugins/mesmerize-companion/src/Customizer/Settings/ContentSetting.php
<?php
namespace Mesmerize\Customizer\Settings;
class ContentSetting extends \Mesmerize\Customizer\BaseSetting {
public static $pageIDRegex = '/<!--@@CPPAGEID\[(.*)\]@@-->/s';
public function update( $value ) {
if ( is_string( $value ) ) {
$value = urldecode( $value );
}
if ( is_string( $value ) ) {
$pages_content = json_decode( $value, true );
} else {
$pages_content = $value;
}
foreach ( $pages_content as $page_id => $content ) {
wp_update_post(
array(
'ID' => $page_id,
'post_content' => $content,
)
);
}
parent::update( array() );
}
public function value() {
if ( $this->is_previewed ) {
$value = $this->post_value( null );
if ( is_string( $value ) ) {
$value = urldecode( $value );
}
// json decode for save as draft issue//
try {
if ( is_string( $value ) ) {
$value = json_decode( $value, true );
}
} catch ( \Exception $e ) {
$value = '{}';
}
return $value;
} else {
return array();
}
}
}