mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-21 16:38:36 -06:00
101 lines
3.4 KiB
PHP
101 lines
3.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* breadcrumbs.php
|
|
* Copyright (c) 2021 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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Diglactic\Breadcrumbs\Generator;
|
|
use Diglactic\Breadcrumbs\Manager;
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| View Name
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Choose a view to display when Breadcrumbs::render() is called.
|
|
| Built in templates are:
|
|
|
|
|
| - 'breadcrumbs::bootstrap5' - Bootstrap 5
|
|
| - 'breadcrumbs::bootstrap4' - Bootstrap 4
|
|
| - 'breadcrumbs::bootstrap3' - Bootstrap 3
|
|
| - 'breadcrumbs::bootstrap2' - Bootstrap 2
|
|
| - 'breadcrumbs::bulma' - Bulma
|
|
| - 'breadcrumbs::foundation6' - Foundation 6
|
|
| - 'breadcrumbs::json-ld' - JSON-LD Structured Data
|
|
| - 'breadcrumbs::materialize' - Materialize
|
|
| - 'breadcrumbs::tailwind' - Tailwind CSS
|
|
| - 'breadcrumbs::uikit' - UIkit
|
|
|
|
|
| Or a custom view, e.g. '_partials/breadcrumbs'.
|
|
|
|
|
*/
|
|
|
|
'view' => 'partials/layout/breadcrumbs',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Breadcrumbs File(s)
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The file(s) where breadcrumbs are defined. e.g.
|
|
|
|
|
| - base_path('routes/breadcrumbs.php')
|
|
| - glob(base_path('breadcrumbs/*.php'))
|
|
|
|
|
*/
|
|
|
|
'files' => base_path('routes/breadcrumbs.php'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Exceptions
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Determine when to throw an exception.
|
|
|
|
|
*/
|
|
|
|
// When route-bound breadcrumbs are used but the current route doesn't have a name (UnnamedRouteException)
|
|
'unnamed-route-exception' => true,
|
|
|
|
// When route-bound breadcrumbs are used and the matching breadcrumb doesn't exist (InvalidBreadcrumbException)
|
|
'missing-route-bound-breadcrumb-exception' => true,
|
|
|
|
// When a named breadcrumb is used but doesn't exist (InvalidBreadcrumbException)
|
|
'invalid-named-breadcrumb-exception' => true,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Classes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Subclass the default classes for more advanced customisations.
|
|
|
|
|
*/
|
|
|
|
// Manager
|
|
'manager-class' => Manager::class,
|
|
|
|
// Generator
|
|
'generator-class' => Generator::class,
|
|
];
|