2015-02-06 13:43:19 -06:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* FireflyServiceProvider.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
|
|
|
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2015-02-06 13:43:19 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Providers;
|
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
use FireflyIII\Support\Amount;
|
|
|
|
use FireflyIII\Support\ExpandedForm;
|
2016-07-24 11:47:55 -05:00
|
|
|
use FireflyIII\Support\FireflyConfig;
|
2015-02-11 00:35:10 -06:00
|
|
|
use FireflyIII\Support\Navigation;
|
|
|
|
use FireflyIII\Support\Preferences;
|
|
|
|
use FireflyIII\Support\Steam;
|
2015-05-02 02:06:07 -05:00
|
|
|
use FireflyIII\Support\Twig\Budget;
|
2015-05-01 15:44:35 -05:00
|
|
|
use FireflyIII\Support\Twig\General;
|
2015-05-02 04:32:45 -05:00
|
|
|
use FireflyIII\Support\Twig\Journal;
|
|
|
|
use FireflyIII\Support\Twig\PiggyBank;
|
2016-01-15 01:10:22 -06:00
|
|
|
use FireflyIII\Support\Twig\Rule;
|
2016-01-15 16:12:52 -06:00
|
|
|
use FireflyIII\Support\Twig\Translation;
|
2015-02-11 00:35:10 -06:00
|
|
|
use FireflyIII\Validation\FireflyValidator;
|
2015-02-06 13:43:19 -06:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2015-05-01 01:29:41 -05:00
|
|
|
use Twig;
|
|
|
|
use TwigBridge\Extension\Loader\Functions;
|
2015-02-07 18:15:15 -06:00
|
|
|
use Validator;
|
2015-02-06 13:43:19 -06:00
|
|
|
|
2015-02-07 18:15:15 -06:00
|
|
|
/**
|
|
|
|
* Class FireflyServiceProvider
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Providers
|
|
|
|
*/
|
2015-02-06 13:43:19 -06:00
|
|
|
class FireflyServiceProvider extends ServiceProvider
|
|
|
|
{
|
2015-02-11 00:35:10 -06:00
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
Validator::resolver(
|
2015-06-06 16:09:12 -05:00
|
|
|
function ($translator, $data, $rules, $messages) {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new FireflyValidator($translator, $data, $rules, $messages);
|
|
|
|
}
|
|
|
|
);
|
2015-07-07 12:09:45 -05:00
|
|
|
$config = app('config');
|
2015-05-01 11:44:49 -05:00
|
|
|
Twig::addExtension(new Functions($config));
|
2015-05-02 04:32:45 -05:00
|
|
|
Twig::addExtension(new PiggyBank);
|
2015-05-01 15:44:35 -05:00
|
|
|
Twig::addExtension(new General);
|
2015-05-02 04:32:45 -05:00
|
|
|
Twig::addExtension(new Journal);
|
2015-05-02 02:06:07 -05:00
|
|
|
Twig::addExtension(new Budget);
|
2015-05-09 15:42:45 -05:00
|
|
|
Twig::addExtension(new Translation);
|
2016-01-15 01:10:22 -06:00
|
|
|
Twig::addExtension(new Rule);
|
2015-02-07 18:15:15 -06:00
|
|
|
}
|
2015-02-11 00:35:10 -06:00
|
|
|
|
2015-05-17 03:30:18 -05:00
|
|
|
/**
|
2016-01-02 09:31:14 -06:00
|
|
|
*
|
2015-05-17 03:30:18 -05:00
|
|
|
*/
|
2015-02-06 13:43:19 -06:00
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
$this->app->bind(
|
2015-06-06 16:09:12 -05:00
|
|
|
'preferences', function () {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new Preferences;
|
2015-02-06 13:43:19 -06:00
|
|
|
}
|
|
|
|
);
|
2016-07-24 11:47:55 -05:00
|
|
|
|
|
|
|
$this->app->bind(
|
|
|
|
'fireflyconfig', function () {
|
|
|
|
return new FireflyConfig;
|
|
|
|
}
|
|
|
|
);
|
2015-02-06 14:23:14 -06:00
|
|
|
$this->app->bind(
|
2015-06-06 16:09:12 -05:00
|
|
|
'navigation', function () {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new Navigation;
|
2015-02-06 14:23:14 -06:00
|
|
|
}
|
|
|
|
);
|
2015-02-06 23:49:24 -06:00
|
|
|
$this->app->bind(
|
2015-06-06 16:09:12 -05:00
|
|
|
'amount', function () {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new Amount;
|
2015-02-06 23:49:24 -06:00
|
|
|
}
|
|
|
|
);
|
2015-02-07 01:23:44 -06:00
|
|
|
|
|
|
|
$this->app->bind(
|
2015-06-06 16:09:12 -05:00
|
|
|
'steam', function () {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new Steam;
|
2015-02-07 01:23:44 -06:00
|
|
|
}
|
|
|
|
);
|
2015-02-07 18:15:15 -06:00
|
|
|
$this->app->bind(
|
2015-06-06 16:09:12 -05:00
|
|
|
'expandedform', function () {
|
2015-02-11 00:35:10 -06:00
|
|
|
return new ExpandedForm;
|
2015-02-07 18:15:15 -06:00
|
|
|
}
|
|
|
|
);
|
2015-02-09 00:23:39 -06:00
|
|
|
|
2015-04-05 13:47:19 -05:00
|
|
|
$this->app->bind('FireflyIII\Repositories\Currency\CurrencyRepositoryInterface', 'FireflyIII\Repositories\Currency\CurrencyRepository');
|
2015-02-27 04:09:23 -06:00
|
|
|
$this->app->bind('FireflyIII\Support\Search\SearchInterface', 'FireflyIII\Support\Search\Search');
|
2016-03-12 07:18:28 -06:00
|
|
|
$this->app->bind('FireflyIII\Repositories\User\UserRepositoryInterface', 'FireflyIII\Repositories\User\UserRepository');
|
2015-07-18 02:49:59 -05:00
|
|
|
$this->app->bind('FireflyIII\Helpers\Attachments\AttachmentHelperInterface', 'FireflyIII\Helpers\Attachments\AttachmentHelper');
|
2016-01-28 14:50:20 -06:00
|
|
|
$this->app->bind(
|
|
|
|
'FireflyIII\Generator\Chart\Account\AccountChartGeneratorInterface', 'FireflyIII\Generator\Chart\Account\ChartJsAccountChartGenerator'
|
|
|
|
);
|
|
|
|
$this->app->bind('FireflyIII\Generator\Chart\Bill\BillChartGeneratorInterface', 'FireflyIII\Generator\Chart\Bill\ChartJsBillChartGenerator');
|
|
|
|
$this->app->bind('FireflyIII\Generator\Chart\Budget\BudgetChartGeneratorInterface', 'FireflyIII\Generator\Chart\Budget\ChartJsBudgetChartGenerator');
|
|
|
|
$this->app->bind(
|
|
|
|
'FireflyIII\Generator\Chart\Category\CategoryChartGeneratorInterface', 'FireflyIII\Generator\Chart\Category\ChartJsCategoryChartGenerator'
|
|
|
|
);
|
|
|
|
$this->app->bind(
|
|
|
|
'FireflyIII\Generator\Chart\PiggyBank\PiggyBankChartGeneratorInterface', 'FireflyIII\Generator\Chart\PiggyBank\ChartJsPiggyBankChartGenerator'
|
|
|
|
);
|
|
|
|
$this->app->bind('FireflyIII\Generator\Chart\Report\ReportChartGeneratorInterface', 'FireflyIII\Generator\Chart\Report\ChartJsReportChartGenerator');
|
2015-04-07 12:58:49 -05:00
|
|
|
$this->app->bind('FireflyIII\Helpers\Help\HelpInterface', 'FireflyIII\Helpers\Help\Help');
|
2015-02-23 13:25:48 -06:00
|
|
|
$this->app->bind('FireflyIII\Helpers\Report\ReportHelperInterface', 'FireflyIII\Helpers\Report\ReportHelper');
|
2016-01-26 19:54:04 -06:00
|
|
|
$this->app->bind('FireflyIII\Helpers\FiscalHelperInterface', 'FireflyIII\Helpers\FiscalHelper');
|
2016-01-27 13:45:05 -06:00
|
|
|
$this->app->bind('FireflyIII\Helpers\Report\AccountReportHelperInterface', 'FireflyIII\Helpers\Report\AccountReportHelper');
|
2016-01-27 14:35:59 -06:00
|
|
|
$this->app->bind('FireflyIII\Helpers\Report\BalanceReportHelperInterface', 'FireflyIII\Helpers\Report\BalanceReportHelper');
|
|
|
|
$this->app->bind('FireflyIII\Helpers\Report\BudgetReportHelperInterface', 'FireflyIII\Helpers\Report\BudgetReportHelper');
|
2015-02-06 13:43:19 -06:00
|
|
|
}
|
|
|
|
|
2015-03-29 01:14:32 -05:00
|
|
|
}
|