/home/techb158/public_html/wp-content/plugins/kirki/app/Casts
NameSizeModeActions
AsSerialize.php8100644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/app/Casts/AsSerialize.php (810B)
$attributes * * @return mixed */ public function get(Model $model, string $key, $value, array $attributes) { return $value !== '' ? maybe_unserialize($value) : null; } /** * Prepare the given value for storage. * * @param array $attributes * * @return string */ public function set(Model $model, string $key, $value, array $attributes) { return $value ? maybe_serialize($value) : ''; } }