firefly-iii/config/twigbridge.php

296 lines
9.2 KiB
PHP
Raw Normal View History

2015-05-25 00:03:26 -05:00
<?php
2022-03-29 07:55:51 -05:00
/*
* twigbridge.php
* Copyright (c) 2022 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2022-01-02 00:49:40 -06:00
declare(strict_types=1);
/**
2019-12-28 02:44:56 -06:00
* This file is part of the TwigBridge package.
*
2019-12-28 02:44:56 -06:00
* @copyright Robert Crowe <hello@vivalacrowe.com>
*
2019-12-28 02:44:56 -06:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2022-03-29 08:01:12 -05:00
2019-12-28 02:44:56 -06:00
use FireflyIII\Support\Twig\AmountFormat;
use FireflyIII\Support\Twig\General;
use FireflyIII\Support\Twig\Rule;
use FireflyIII\Support\Twig\TransactionGroupTwig;
use FireflyIII\Support\Twig\Translation;
use Illuminate\Contracts\Support\Htmlable;
use TwigBridge\Extension\Laravel\Auth;
use TwigBridge\Extension\Laravel\Config;
2019-03-02 13:14:45 -06:00
use TwigBridge\Extension\Laravel\Dump;
use TwigBridge\Extension\Laravel\Event;
2019-03-02 13:14:45 -06:00
use TwigBridge\Extension\Laravel\Input;
2019-12-28 02:44:56 -06:00
use TwigBridge\Extension\Laravel\Model;
use TwigBridge\Extension\Laravel\Session;
use TwigBridge\Extension\Laravel\Str;
use TwigBridge\Extension\Laravel\Translator;
use TwigBridge\Extension\Laravel\Url;
use TwigBridge\Extension\Loader\Facades;
2018-05-11 03:08:34 -05:00
use TwigBridge\Extension\Loader\Filters;
use TwigBridge\Extension\Loader\Functions;
use TwigBridge\Extension\Loader\Globals;
2019-03-02 13:14:45 -06:00
2016-09-15 23:19:40 -05:00
/**
* Configuration options for Twig.
*/
2015-05-25 00:03:26 -05:00
return [
'twig' => [
2022-03-29 08:01:12 -05:00
'extension' => 'twig',
'environment' => [
'debug' => env('APP_DEBUG', false),
'charset' => 'utf-8',
'cache' => null,
'auto_reload' => true,
'strict_variables' => false,
2022-03-29 08:01:12 -05:00
'autoescape' => 'html',
'optimizations' => -1,
],
2015-05-25 00:03:26 -05:00
/*
|--------------------------------------------------------------------------
| Safe Classes
2015-05-25 00:03:26 -05:00
|--------------------------------------------------------------------------
|
| When set, the output of the `__string` method of the following classes will not be escaped.
| default: Laravel's Htmlable, which the HtmlString class implements.
2015-05-25 00:03:26 -05:00
|
*/
'safe_classes' => [
Htmlable::class => ['html'],
2015-05-25 00:03:26 -05:00
],
/*
|--------------------------------------------------------------------------
| Global variables
|--------------------------------------------------------------------------
|
| These will always be passed in and can be accessed as Twig variables.
| NOTE: these will be overwritten if you pass data into the view with the same key.
|
*/
2022-03-29 08:01:12 -05:00
'globals' => [],
2015-05-25 00:03:26 -05:00
],
'extensions' => [
/*
|--------------------------------------------------------------------------
| Extensions
|--------------------------------------------------------------------------
|
| Enabled extensions.
|
2019-03-02 13:14:45 -06:00
| `Twig\Extension\DebugExtension` is enabled automatically if twig.debug is TRUE.
2015-05-25 00:03:26 -05:00
|
*/
2022-03-29 08:01:12 -05:00
'enabled' => [
2018-04-02 07:43:06 -05:00
Facades::class,
Filters::class,
Functions::class,
Event::class,
Globals::class,
Auth::class,
Config::class,
2018-04-02 07:43:06 -05:00
Dump::class,
Input::class,
Session::class,
2018-04-02 07:43:06 -05:00
Str::class,
Translator::class,
Url::class,
2019-12-28 02:44:56 -06:00
Model::class,
// Firefly III
2019-12-28 02:44:56 -06:00
AmountFormat::class,
General::class,
Rule::class,
TransactionGroupTwig::class,
Translation::class,
2015-05-25 00:03:26 -05:00
],
/*
|--------------------------------------------------------------------------
| Facades
|--------------------------------------------------------------------------
|
| Available facades. Access like `{{ Config.get('foo.bar') }}`.
|
| Each facade can take an optional array of options. To mark the whole facade
| as safe you can set the option `'is_safe' => true`. Setting the facade as
| safe means that any HTML returned will not be escaped.
|
| It is advisable to not set the whole facade as safe and instead mark the
| each appropriate method as safe for security reasons. You can do that with
| the following syntax:
|
| <code>
| 'Form' => [
| 'is_safe' => [
| 'open'
| ]
| ]
| </code>
|
| The values of the `is_safe` array must match the called method on the facade
| in order to be marked as safe.
|
*/
2022-03-29 08:01:12 -05:00
'facades' => [
2019-08-10 09:50:37 -05:00
'Breadcrumbs' => [
2015-05-25 00:03:26 -05:00
'is_safe' => [
'render',
2016-08-26 01:21:31 -05:00
],
2015-05-25 00:03:26 -05:00
],
'Session',
'Route',
'Auth',
'Lang',
'Preferences',
2015-05-25 00:03:26 -05:00
'URL',
2017-08-30 00:40:39 -05:00
'Steam',
2015-05-25 00:03:26 -05:00
'Config',
'Request',
2023-06-04 08:16:17 -05:00
'Html',
2019-08-10 09:50:37 -05:00
'ExpandedForm' => [
'is_safe' => [
2022-12-29 12:43:43 -06:00
'date',
'text',
'select',
'balance',
'optionsList',
'checkbox',
'amount',
'tags',
'integer',
'textarea',
'location',
'file',
'staticText',
'password',
'nonSelectableAmount',
'number',
'amountNoCurrency',
'percentage',
'objectGroup',
2019-06-29 12:47:40 -05:00
],
],
2019-08-10 09:50:37 -05:00
'AccountForm' => [
'is_safe' => [
2022-12-29 12:43:43 -06:00
'activeWithdrawalDestinations',
'activeDepositDestinations',
'assetAccountCheckList',
'assetAccountList',
'longAccountList',
],
2015-05-25 00:03:26 -05:00
],
2019-08-10 09:50:37 -05:00
'CurrencyForm' => [
'is_safe' => [
2022-12-29 12:43:43 -06:00
'currencyList',
'currencyListEmpty',
'balanceAll',
2019-08-10 09:50:37 -05:00
],
],
2020-03-17 11:06:30 -05:00
'PiggyBankForm' => [
'is_safe' => [
'piggyBankList',
2019-08-10 09:50:37 -05:00
],
2020-03-17 11:06:30 -05:00
],
2019-08-10 09:50:37 -05:00
'RuleForm' => [
'is_safe' => [
2022-12-29 12:43:43 -06:00
'ruleGroupList',
'ruleGroupListWithEmpty',
2019-08-10 09:50:37 -05:00
],
],
2015-05-25 00:03:26 -05:00
],
/*
|--------------------------------------------------------------------------
| Functions
|--------------------------------------------------------------------------
|
| Available functions. Access like `{{ secure_url(...) }}`.
|
| Each function can take an optional array of options. These options are
2019-03-02 13:14:45 -06:00
| passed directly to `Twig\TwigFunction`.
2015-05-25 00:03:26 -05:00
|
| So for example, to mark a function as safe you can do the following:
|
| <code>
| 'link_to' => [
| 'is_safe' => ['html']
| ]
| </code>
|
| The options array also takes a `callback` that allows you to name the
| function differently in your Twig templates than what it's actually called.
|
| <code>
| 'link' => [
| 'callback' => 'link_to'
| ]
| </code>
|
*/
'functions' => [
'elixir',
'head',
'last',
2019-03-02 13:14:45 -06:00
'mix',
2015-05-25 00:03:26 -05:00
],
/*
|--------------------------------------------------------------------------
| Filters
|--------------------------------------------------------------------------
|
| Available filters. Access like `{{ variable|filter }}`.
|
| Each filter can take an optional array of options. These options are
2019-03-02 13:14:45 -06:00
| passed directly to `Twig\TwigFilter`.
2015-05-25 00:03:26 -05:00
|
| So for example, to mark a filter as safe you can do the following:
|
| <code>
| 'studly_case' => [
| 'is_safe' => ['html']
| ]
| </code>
|
| The options array also takes a `callback` that allows you to name the
| filter differently in your Twig templates than what is actually called.
|
| <code>
| 'snake' => [
| 'callback' => 'snake_case'
| ]
| </code>
|
*/
2022-03-29 08:01:12 -05:00
'filters' => [
2016-09-15 23:19:40 -05:00
'get' => 'data_get',
],
2016-08-26 01:21:31 -05:00
],
2015-05-25 15:04:24 -05:00
];