LinkStack/themes/galaxy/config.php

67 lines
2.0 KiB
PHP
Raw Normal View History

2022-11-13 00:10:25 +01:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Theme Config
|--------------------------------------------------------------------------
|
2023-06-22 15:08:37 +02:00
| The theme config allows you to configure how LittleLink Custom should treat your theme.
2022-11-13 00:10:25 +01:00
| 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' => 'false',
'open_links_in_same_tab' => 'false',
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2023-06-22 15:08:37 +02:00
'enable_custom_code' => 'true',
2022-11-13 00:10:25 +01:00
// Disable individual files (only applies if above is 'true').
'enable_custom_head' => 'true',
2023-06-22 15:08:37 +02:00
'enable_custom_body' => 'false',
'enable_custom_body_end' => 'false',
2022-11-13 00:10:25 +01:00
/*
|--------------------------------------------------------------------------
| 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 ...)
2023-06-22 15:08:37 +02:00
];