| Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/theme-joomla/ |
| Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/theme-joomla/updates.php |
<?php
use YOOtheme\Arr;
return [
'1.20.0-beta.6' => function ($config, array $params) {
// Deprecated Blog settings
if (!Arr::has($config, 'post.image_margin')) {
Arr::set($config, 'post.title_margin', 'large');
Arr::set($config, 'blog.title_margin', 'large');
if (Arr::get($config, 'post.content_width') === true) {
Arr::set($config, 'post.content_width', 'small');
}
if (Arr::get($config, 'post.content_width') === false) {
Arr::set($config, 'post.content_width', '');
}
if (Arr::get($config, 'post.header_align') === true) {
Arr::set($config, 'blog.header_align', 1);
}
}
return $config;
},
];