-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.php
75 lines (58 loc) · 2.53 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
return [
/*
|--------------------------------------------------------------------------
| Theme Config
|--------------------------------------------------------------------------
|
| The theme config allows you to configure how LittleLink Custom should treat your theme.
| All settings can either be set to "true" or "false", unless stated otherwise.
|
| The settings below change how your buttons behave.
|
*/
// Some themes may not be compatible with custom buttons created by the Button Editor.
// If 'false' the default button CSS is used.
'allow_custom_buttons' => 'true',
'open_links_in_same_tab' => 'false',
// You can use this option to use the default button styling. For example reskins of the Default Theme.
// This can be useful if you do not want to update your brand styles every time a new button is added.
// If true the file "brands.css" wont be used anymore and can be removed.
'use_default_buttons' => 'false',
// With this option, you can disallow custom background images set by users.
'allow_custom_background' => 'true',
'enable_dynamic_contrast' => 'true',
/*
|--------------------------------------------------------------------------
| Custom Code
|--------------------------------------------------------------------------
|
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
| In your "extra" folder, you will find 3 separate files for injecting your code to
| different places on the final page (head, body, at the end of the body).
|
| You may also attach custom assets like CSS, JS, or images.
| You can find instructions for this in the files in your extra folder.
|
*/
'enable_custom_code' => 'false',
// Disable individual files (only applies if above is 'true').
'enable_custom_head' => 'true',
'enable_custom_body' => 'true',
'enable_custom_body_end' => 'true',
/*
|--------------------------------------------------------------------------
| Custom Icons
|--------------------------------------------------------------------------
|
| You may add custom icons to your theme.
| These icons are stored under: .../extra/custom-icons.
|
| You can adjust the file extension types to use other files than just SVGs.
|
*/
'use_custom_icons' => 'false',
// Is not set correct this will cause errors.
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
];