2021-04-09 11:34:16 +02:00
|
|
|
<?php
|
2022-10-10 11:28:05 +02:00
|
|
|
class init extends news {
|
2021-04-09 11:34:16 +02:00
|
|
|
public static $defaultData = [
|
2023-12-19 19:09:13 +01:00
|
|
|
'feeds' => true,
|
|
|
|
'feedsLabel' => 'RSS',
|
2021-04-09 13:29:11 +02:00
|
|
|
'itemsperPage' => 8,
|
|
|
|
'itemsperCol' => 12,
|
2021-07-23 19:34:23 +02:00
|
|
|
'height' => -1,
|
2023-12-19 19:09:13 +01:00
|
|
|
'versionData' => '5.3',
|
2023-02-12 11:14:07 +01:00
|
|
|
'dateFormat' => '%d %B %Y',
|
|
|
|
'timeFormat' =>'%H:%M',
|
2023-12-19 19:09:13 +01:00
|
|
|
'buttonBack' => true
|
2021-04-09 11:34:16 +02:00
|
|
|
];
|
2021-07-23 19:34:23 +02:00
|
|
|
|
2021-04-09 11:34:16 +02:00
|
|
|
public static $defaultTheme = [
|
2021-07-23 19:34:23 +02:00
|
|
|
'style' => '',
|
|
|
|
'borderStyle' => 'none',
|
|
|
|
'borderColor' => 'rgba(33, 34, 35, 1)',
|
|
|
|
'backgroundColor' => 'rgba(255, 255, 255, 1)',
|
2023-12-19 19:09:13 +01:00
|
|
|
'borderWidth' => '0',
|
|
|
|
'itemsBlur' => '0%'
|
2021-04-09 11:34:16 +02:00
|
|
|
];
|
2021-07-23 19:34:23 +02:00
|
|
|
|
2021-04-09 11:34:16 +02:00
|
|
|
}
|