Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
/ latte-filters Public archive

☕️ Extra filters for Latte (@nette) templating engine

License

Notifications You must be signed in to change notification settings

wavevision/latte-filters

Repository files navigation

Wavevision s.r.o.

Latte Filters

CI Coverage Status PHPStan

Set of extra nette/latte filters.

Installation

Via Composer

composer require wavevision/latte-filters

Contents

  • CzechMonth – render months translated to Czech (incl. inflected version)
  • Email – render ProtectedEmail addresses (HEX encoded)
  • Mtime – render filenames with timestamp appeneded to bust caches

Usage

To use all filters, simply include common.neon from this package in your project config:

includes:
  - %vendorDir%/wavevision/latte-filters/config/common.neon

Alternatively, you can register only wanted filters separately, e.g.:

services:
  - Wavevision\LatteFilters\CzechMonth\CzechMonth

  nette.latteFactory:
    setup:
      - addFilter('czechMonth', [@Wavevision\LatteFilters\CzechMonth\CzechMonth, 'process'])