Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 608 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 608 Bytes

You can now stop spamming prepareTemplateFilters and setup with template runtime helpers setup! This extension allows you to add dynamic filters (runtime helpers and helper loaders) to latte engine just by tagging service.

class DynamicHelperWithFewFilters
{

	function money($value) { /* ... */ }

	function formatTime($value) { /* ... */ }

}
service:
	-
		class: DynamicHelperWithFewFilters
		tags:
			latte.filter: [ money, formatTime: time ]

	-
		class: DynamicHelperLoader
		tags: [ latte.filterLoader ]

extensions:
	latteFilters: Rixxi\LatteFilters\DI\LatteFiltersExtension