MD Umbau
This commit is contained in:
27
kb-markdown-importer/includes/Settings.php
Normal file
27
kb-markdown-importer/includes/Settings.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace KbMarkdownImporter;
|
||||
|
||||
final class Settings
|
||||
{
|
||||
public static function defaults(): array
|
||||
{
|
||||
return [
|
||||
'gitlab_base_url' => '',
|
||||
'gitlab_token' => '',
|
||||
'gitlab_group' => 'knowledgebase',
|
||||
'branch_pattern' => '^v.*',
|
||||
'docs_base_slug' => 'docs',
|
||||
'image_lightbox' => '1',
|
||||
'public_docs' => '0',
|
||||
'cron_interval' => 'disabled',
|
||||
'allow_svg' => '0',
|
||||
'design_theme' => 'obyte',
|
||||
'design_primary_color' => '#00A7E6',
|
||||
'design_accent_color' => '#F59C00',
|
||||
'design_radius' => '14',
|
||||
'custom_theme_css_url' => '',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user