Files
firefly-iii/app/Support/Binder/DynamicConfigKey.php

48 lines
1.5 KiB
PHP
Raw Normal View History

2018-12-09 06:39:56 +01:00
<?php
2021-02-17 06:17:48 +01:00
/*
* DynamicConfigKey.php
* Copyright (c) 2021 james@firefly-iii.org
2018-12-09 06:39:56 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-12-09 06:39:56 +01:00
*
* 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.
2018-12-09 06:39:56 +01:00
*
* This program is distributed in the hope that it will be useful,
2018-12-09 06:39:56 +01:00
* 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.
2018-12-09 06:39:56 +01:00
*
* 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/>.
2018-12-09 06:39:56 +01:00
*/
namespace FireflyIII\Support\Binder;
use Illuminate\Routing\Route;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
2021-02-17 06:17:48 +01:00
* Class DynamicConfigKey
2018-12-09 06:39:56 +01:00
*/
2021-02-17 06:17:48 +01:00
class DynamicConfigKey
2018-12-09 06:39:56 +01:00
{
/**
* @param string $value
* @param Route $route
*
* @return string
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public static function routeBinder(string $value, Route $route): string
{
$accepted = ['is_demo_site', 'permission_update_check', 'single_user_mode'];
2019-06-21 19:10:02 +02:00
if (in_array($value, $accepted, true)) {
2018-12-09 06:39:56 +01:00
return $value;
}
throw new NotFoundHttpException;
}
2021-02-17 06:17:48 +01:00
}