| Current Path : /home/e/o/l/eolienneia/www/templates/yootheme/vendor/yootheme/builder/elements/section/ |
| Current File : /home/e/o/l/eolienneia/www/templates/yootheme/vendor/yootheme/builder/elements/section/element.php |
<?php
namespace YOOtheme;
return [
'updates' => [
'2.4.12.1' => function ($node) {
if (Arr::get($node->props, 'animation_delay') === true) {
$node->props['animation_delay'] = '200';
}
},
'2.4.0-beta.0.2' => function ($node) {
if (isset($node->props['image_visibility'])) {
$node->props['media_visibility'] = $node->props['image_visibility'];
unset($node->props['image_visibility']);
}
},
'2.3.0-beta.1.1' => function ($node) {
/**
* @var Config $config
*/
$config = app(Config::class);
list($style) = explode(':', $config('~theme.style'));
if (in_array($style, ['fjord'])) {
if (Arr::get($node->props, 'width') === 'default') {
$node->props['width'] = 'large';
}
}
},
'2.1.0-beta.2.1' => function ($node) {
if (in_array(Arr::get($node->props, 'style'), ['primary', 'secondary'])) {
$node->props['text_color'] = '';
}
},
'2.0.0-beta.5.1' => function ($node) {
/**
* @var Config $config
*/
$config = app(Config::class);
list($style) = explode(':', $config('~theme.style'));
if (!in_array($style, ['jack-baker', 'morgan-consulting', 'vibe'])) {
if (Arr::get($node->props, 'width') === 'large') {
$node->props['width'] = 'xlarge';
}
}
if (
in_array($style, [
'craft',
'district',
'florence',
'makai',
'matthew-taylor',
'pinewood-lake',
'summit',
'tomsen-brody',
'trek',
'vision',
'yard',
])
) {
if (Arr::get($node->props, 'width') === 'default') {
$node->props['width'] = 'large';
}
}
},
'1.18.10.2' => function ($node) {
if (!empty($node->props['image']) && !empty($node->props['video'])) {
unset($node->props['video']);
}
},
'1.18.0' => function ($node) {
if (!isset($node->props['image_effect'])) {
$node->props['image_effect'] = Arr::get($node->props, 'image_fixed') ? 'fixed' : '';
}
if (
!isset($node->props['vertical_align']) &&
in_array(Arr::get($node->props, 'height'), ['full', 'percent', 'section'])
) {
$node->props['vertical_align'] = 'middle';
}
if (Arr::get($node->props, 'style') === 'video') {
$node->props['style'] = 'default';
}
if (Arr::get($node->props, 'width') === 0) {
$node->props['width'] = 'default';
} elseif (Arr::get($node->props, 'width') === 2) {
$node->props['width'] = 'small';
} elseif (Arr::get($node->props, 'width') === 3) {
$node->props['width'] = 'expand';
}
},
],
];