generated from tomdavies/craft-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.php
47 lines (45 loc) · 1.25 KB
/
config.example.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
<?php
/**
* Toolbelt plugin for Craft CMS 5.x
*
* Craft Toolbelt
*
* @link https://zaengle.com/
* @copyright Copyright (c) 2022 Zaengle Corp
*/
/**
* Toolbelt config.php
*
* This file exists only as a template for the Toolbelt settings.
* It does nothing on its own.
*
* Don't edit this file, instead copy it to 'craft/config' as 'toolbelt.php'
* and make your changes there to override default settings.
*
* Once copied to 'craft/config', this file will be multi-environment aware as
* well, so you can have different settings groups for each environment, just as
* you do for 'general.php'
*/
return [
// Paths to look for SVGs when inlining, you can use aliases here
// 'svgPaths' => [
// '@root/assets/svg'
// ],
// The prefix to apply to symbol ids in your SVG sprite
// 'svgSpriteIdPrefix' => 'sprite-',
// Optional path to customise the template used by `useSvgSprite()`
// 'svgSpriteTemplate' => '_toolbelt/useSvgSprite',
'svgSpriteDefaultOpts' => [
'width' => 32,
'height' => 32,
],
'svgSpriteDefaultAttrs' => [
'aria-hidden' => 'true'
],
'custom' => [
'filters' => [],
'functions' => [],
'globals' => [],
'tests' => [],
],
];