| Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/builder/elements/popover/ |
| Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/builder/elements/popover/element.php |
<?php
namespace YOOtheme;
return [
'transforms' => [
'render' => function ($node) {
if (empty($node->props['background_image'])) {
$node->props['background_image'] = Url::to(
'~yootheme/theme/assets/images/element-image-placeholder.png'
);
}
},
],
'updates' => [
'2.0.0-beta.5.1' => function ($node) {
if (Arr::get($node->props, 'link_type') === 'content') {
$node->props['title_link'] = true;
$node->props['image_link'] = true;
$node->props['link_text'] = '';
} elseif (Arr::get($node->props, 'link_type') === 'element') {
$node->props['card_link'] = true;
$node->props['link_text'] = '';
}
unset($node->props['link_type']);
},
'1.20.0-beta.1.1' => function ($node) {
if (isset($node->props['maxwidth_align'])) {
$node->props['block_align'] = $node->props['maxwidth_align'];
unset($node->props['maxwidth_align']);
}
},
'1.20.0-beta.0.1' => function ($node) {
/**
* @var Config $config
*/
$config = app(Config::class);
list($style) = explode(':', $config('~theme.style'));
if (
in_array($style, [
'craft',
'district',
'jack-backer',
'tomsen-brody',
'vision',
'florence',
'max',
'nioh-studio',
'sonic',
'summit',
'trek',
])
) {
if (
Arr::get($node->props, 'title_style') === 'h1' ||
(empty($node->props['title_style']) &&
Arr::get($node->props, 'title_element') === 'h1')
) {
$node->props['title_style'] = 'heading-small';
}
}
if (in_array($style, ['florence', 'max', 'nioh-studio', 'sonic', 'summit', 'trek'])) {
if (Arr::get($node->props, 'title_style') === 'h2') {
$node->props['title_style'] =
Arr::get($node->props, 'title_element') === 'h1' ? '' : 'h1';
} elseif (
empty($node->props['title_style']) &&
Arr::get($node->props, 'title_element') === 'h2'
) {
$node->props['title_style'] = 'h1';
}
}
if (in_array($style, ['copper-hill'])) {
if (Arr::get($node->props, 'title_style') === 'h1') {
$node->props['title_style'] =
Arr::get($node->props, 'title_element') === 'h2' ? '' : 'h2';
} elseif (
empty($node->props['title_style']) &&
Arr::get($node->props, 'title_element') === 'h1'
) {
$node->props['title_style'] = 'h2';
}
}
},
'1.19.0-beta.0.1' => function ($node) {
if (Arr::get($node->props, 'meta_align') === 'top') {
$node->props['meta_align'] = 'above-title';
}
if (Arr::get($node->props, 'meta_align') === 'bottom') {
$node->props['meta_align'] = 'below-title';
}
if (Arr::get($node->props, 'link_style') === 'card') {
$node->props['link_type'] = 'element';
$node->props['link_style'] = 'default';
}
if (isset($node->props['image_card'])) {
$node->props['image_card_padding'] = $node->props['image_card'];
unset($node->props['image_card']);
}
},
'1.18.10.3' => function ($node) {
if (Arr::get($node->props, 'meta_align') === 'top') {
if (!empty($node->props['meta_margin'])) {
$node->props['title_margin'] = $node->props['meta_margin'];
}
$node->props['meta_margin'] = '';
}
},
'1.18.10.1' => function ($node) {
if (isset($node->props['image_inline_svg'])) {
$node->props['image_svg_inline'] = $node->props['image_inline_svg'];
unset($node->props['image_inline_svg']);
}
if (isset($node->props['image_animate_svg'])) {
$node->props['image_svg_animate'] = $node->props['image_animate_svg'];
unset($node->props['image_animate_svg']);
}
},
'1.18.0' => function ($node) {
if (
!isset($node->props['meta_color']) &&
Arr::get($node->props, 'meta_style') === 'muted'
) {
$node->props['meta_color'] = 'muted';
$node->props['meta_style'] = '';
}
},
],
];