mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Rule.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * 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.
 | |
|  */
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace FireflyIII\Support\Twig;
 | |
| 
 | |
| use Config;
 | |
| use Twig_Extension;
 | |
| use Twig_SimpleFunction;
 | |
| 
 | |
| /**
 | |
|  * Class Rule
 | |
|  *
 | |
|  * @package FireflyIII\Support\Twig
 | |
|  */
 | |
| class Rule extends Twig_Extension
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @return Twig_SimpleFunction
 | |
|      */
 | |
|     public function allActionTriggers(): Twig_SimpleFunction
 | |
|     {
 | |
|         return new Twig_SimpleFunction(
 | |
|             'allRuleActions', function () {
 | |
|             // array of valid values for actions
 | |
|             $ruleActions     = array_keys(Config::get('firefly.rule-actions'));
 | |
|             $possibleActions = [];
 | |
|             foreach ($ruleActions as $key) {
 | |
|                 $possibleActions[$key] = trans('firefly.rule_action_' . $key . '_choice');
 | |
|             }
 | |
|             unset($key, $ruleActions);
 | |
| 
 | |
|             return $possibleActions;
 | |
|         }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return Twig_SimpleFunction
 | |
|      */
 | |
|     public function allJournalTriggers(): Twig_SimpleFunction
 | |
|     {
 | |
|         return new Twig_SimpleFunction(
 | |
|             'allJournalTriggers', function () {
 | |
|             return [
 | |
|                 'store-journal'  => trans('firefly.rule_trigger_store_journal'),
 | |
|                 'update-journal' => trans('firefly.rule_trigger_update_journal'),
 | |
|             ];
 | |
|         }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return Twig_SimpleFunction
 | |
|      */
 | |
|     public function allRuleTriggers(): Twig_SimpleFunction
 | |
|     {
 | |
|         return new Twig_SimpleFunction(
 | |
|             'allRuleTriggers', function () {
 | |
|             $ruleTriggers     = array_keys(Config::get('firefly.rule-triggers'));
 | |
|             $possibleTriggers = [];
 | |
|             foreach ($ruleTriggers as $key) {
 | |
|                 if ($key !== 'user_action') {
 | |
|                     $possibleTriggers[$key] = trans('firefly.rule_trigger_' . $key . '_choice');
 | |
|                 }
 | |
|             }
 | |
|             unset($key, $ruleTriggers);
 | |
| 
 | |
|             return $possibleTriggers;
 | |
|         }
 | |
| 
 | |
|         );
 | |
| 
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return array
 | |
|      */
 | |
|     public function getFunctions(): array
 | |
|     {
 | |
|         return [
 | |
|             $this->allJournalTriggers(),
 | |
|             $this->allRuleTriggers(),
 | |
|             $this->allActionTriggers(),
 | |
|         ];
 | |
| 
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns the name of the extension.
 | |
|      *
 | |
|      * @return string The extension name
 | |
|      */
 | |
|     public function getName(): string
 | |
|     {
 | |
|         return 'FireflyIII\Support\Twig\Rule';
 | |
|     }
 | |
| }
 |