ZwiiCMS/module/news/ressource/defaultdata.php

22 lines
656 B
PHP
Raw Normal View History

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 = [
'feeds' => false,
'feedsLabel' => '',
2021-04-09 13:29:11 +02:00
'itemsperPage' => 8,
'itemsperCol' => 12,
2021-07-23 19:34:23 +02:00
'height' => -1,
2023-02-12 11:14:07 +01:00
'versionData' => '3.5',
'dateFormat' => '%d %B %Y',
'timeFormat' =>'%H:%M',
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)',
'borderWidth' => '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
}