mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
ac5525c9ac
* Client login, reset and update password page * Client dashboard, sidebar, PortalComposer.php * wip * Personal page & update for details * Invoices, paying & pagination.blade.php * Invoices, recurring invoice & buttons * Payments, link component * Payment methods * Breadcrums, clean up & wrap up * Remove format_date() method to formatDate on object * Payments - $this->render is now proxy for render() - Removed logic from Controller.php to ClientPortal.php - Added MakesDates to ClientGatewayToken.php - StripePaymentDriver.php now returns correct views - Refactor of adding new payment method - Ignoring all local builds for public/js/clients/* * Signature, wip * Fix "Pay now" on single invoice * Payments: - Added ProcessInvoicesInBulk request class - Refactor InvoiceController::bulk() - Displaying terms & payments - New signature.blade.php - Removed comment from webpack.mix.js * Quotes: - Refactor ProcessInvoicesInBulk.php to ProcessInvoicesInBulkRequest.php - Add new 'Quotes' field inside of PortalComposer.php - Added MakesDates to Quote.php - Added Quote::badgeForStatus() - Cleanup payment.blade.php - Quote showing and approving - New resource 'quotes' in client.php - New image for quotes, align-left.svg * Credits: - New 'credits' resource in client.php - Fixes for client.php typo * Breadcrumbs: - Quotes - Credits * Placeholder for translations. * Restore whereIn & client scope Co-authored-by: David Bomba <turbo124@gmail.com>
75 lines
2.4 KiB
PHP
75 lines
2.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| View Name
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Choose a view to display when Breadcrumbs::render() is called.
|
|
| Built in templates are:
|
|
|
|
|
| - 'breadcrumbs::bootstrap4' - Bootstrap 4
|
|
| - 'breadcrumbs::bootstrap3' - Bootstrap 3
|
|
| - 'breadcrumbs::bootstrap2' - Bootstrap 2
|
|
| - 'breadcrumbs::bulma' - Bulma
|
|
| - 'breadcrumbs::foundation6' - Foundation 6
|
|
| - 'breadcrumbs::materialize' - Materialize
|
|
| - 'breadcrumbs::json-ld' - JSON-LD Structured Data
|
|
|
|
|
| Or a custom view, e.g. '_partials/breadcrumbs'.
|
|
|
|
|
*/
|
|
|
|
'view' => 'portal.ninja2020.components.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' => DaveJamesMiller\Breadcrumbs\BreadcrumbsManager::class,
|
|
|
|
// Generator
|
|
'generator-class' => DaveJamesMiller\Breadcrumbs\BreadcrumbsGenerator::class,
|
|
|
|
];
|