2015-05-02 11:32:45 +02:00
|
|
|
<?php
|
2016-05-20 12:41:23 +02:00
|
|
|
/**
|
|
|
|
|
* PiggyBank.php
|
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
|
*
|
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-02-05 12:08:25 +01:00
|
|
|
declare(strict_types = 1);
|
2015-05-02 11:32:45 +02:00
|
|
|
|
|
|
|
|
namespace FireflyIII\Support\Twig;
|
|
|
|
|
|
2015-05-03 12:58:55 +02:00
|
|
|
use FireflyIII\Models\PiggyBank as PB;
|
2015-05-02 11:32:45 +02:00
|
|
|
use Twig_Extension;
|
|
|
|
|
use Twig_SimpleFunction;
|
|
|
|
|
|
|
|
|
|
/**
|
2015-06-29 09:23:39 +02:00
|
|
|
*
|
2015-05-02 11:32:45 +02:00
|
|
|
* Class PiggyBank
|
|
|
|
|
*
|
|
|
|
|
* @package FireflyIII\Support\Twig
|
|
|
|
|
*/
|
|
|
|
|
class PiggyBank extends Twig_Extension
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
2016-04-05 22:00:03 +02:00
|
|
|
public function getFunctions(): array
|
2015-05-02 11:32:45 +02:00
|
|
|
{
|
|
|
|
|
$functions = [];
|
|
|
|
|
|
|
|
|
|
$functions[] = new Twig_SimpleFunction(
|
2015-06-06 23:09:12 +02:00
|
|
|
'currentRelevantRepAmount', function (PB $piggyBank) {
|
2015-05-02 11:32:45 +02:00
|
|
|
return $piggyBank->currentRelevantRep()->currentamount;
|
|
|
|
|
}
|
|
|
|
|
);
|
2015-05-03 12:58:55 +02:00
|
|
|
|
2015-05-02 11:32:45 +02:00
|
|
|
return $functions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the name of the extension.
|
|
|
|
|
*
|
|
|
|
|
* @return string The extension name
|
|
|
|
|
*/
|
2016-04-05 22:00:03 +02:00
|
|
|
public function getName(): string
|
2015-05-02 11:32:45 +02:00
|
|
|
{
|
|
|
|
|
return 'FireflyIII\Support\Twig\PiggyBank';
|
|
|
|
|
}
|
2015-05-05 12:51:57 +02:00
|
|
|
}
|