WIP
This commit is contained in:
@@ -110,11 +110,10 @@ return [
|
|||||||
"vc_empty_space" => function () {
|
"vc_empty_space" => function () {
|
||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
"vc_raw_html" => function ($attr) {
|
"vc_raw_html" => function ($attr, $content) {
|
||||||
$text = $attr["text"] ?? "";
|
|
||||||
$raw = "";
|
$raw = "";
|
||||||
if (strlen($text) > 0) {
|
if (strlen($content) > 0) {
|
||||||
$raw = base64_decode($text);
|
$raw = base64_decode($content);
|
||||||
}
|
}
|
||||||
return $raw;
|
return $raw;
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user