Update breadcrumbs.

This commit is contained in:
James Cole
2021-05-24 12:40:39 +02:00
parent 20442a5023
commit 2afd959c4f
5 changed files with 146 additions and 156 deletions

View File

@@ -1,28 +1,7 @@
<?php
/**
* breadcrumbs.php
* Copyright (c) 2019 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);
return [
/*
|--------------------------------------------------------------------------
| View Name
@@ -31,9 +10,16 @@ return [
| Choose a view to display when Breadcrumbs::render() is called.
| Built in templates are:
|
| - 'breadcrumbs::bootstrap4' - Twitter Bootstrap v4
| - 'breadcrumbs::bootstrap3' - Twitter Bootstrap v3
| - 'breadcrumbs::bootstrap2' - Twitter Bootstrap v2
| - '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'.
|
@@ -53,7 +39,7 @@ return [
|
*/
'files' => base_path('routes/breadcrumbs.php'),
'files' => base_path('routes/breadcrumbs.php'),
/*
|--------------------------------------------------------------------------
@@ -65,13 +51,13 @@ return [
*/
// When route-bound breadcrumbs are used but the current route doesn't have a name (UnnamedRouteException)
'unnamed-route-exception' => true,
'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,
'invalid-named-breadcrumb-exception' => true,
/*
|--------------------------------------------------------------------------
@@ -83,9 +69,9 @@ return [
*/
// Manager
'manager-class' => DaveJamesMiller\Breadcrumbs\BreadcrumbsManager::class,
'manager-class' => Diglactic\Breadcrumbs\Manager::class,
// Generator
'generator-class' => DaveJamesMiller\Breadcrumbs\BreadcrumbsGenerator::class,
'generator-class' => Diglactic\Breadcrumbs\Generator::class,
];