Deltacms/module/news/ressource/defaultdata.php

25 lines
705 B
PHP
Raw Normal View History

2022-01-31 09:10:49 +01:00
<?php
2022-05-11 08:58:38 +02:00
class init extends news {
2022-01-31 09:10:49 +01:00
public static $defaultData = [
'feeds' => false,
'feedsLabel' => '',
'itemsperPage' => 8,
'itemsperCol' => 12,
'height' => -1,
2022-07-05 08:16:26 +02:00
'versionData' => self::VERSION,
'hiddeTitle' => false,
2023-01-09 17:11:25 +01:00
'hideMedia' => false,
2022-09-02 08:44:18 +02:00
'sameHeight' => false,
'noMargin' => true
2022-01-31 09:10:49 +01:00
];
public static $defaultTheme = [
'style' => '',
'borderColor' => 'rgba(33, 34, 35, 1)',
'backgroundColor' => 'rgba(255, 255, 255, 1)',
2022-07-05 08:16:26 +02:00
'borderWidth' => '0',
'borderRadius' => '0px',
'borderShadows' => '0px 0px 0px'
2022-01-31 09:10:49 +01:00
];
}