codemonauts / craft-iban-field
Craft CMS plugin to store, validate and format IBAN codes.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 1
Type:craft-plugin
Requires
- craftcms/cms: ^4.0.0
- jschaedl/iban-validation: ^1.5.0
This package is auto-updated.
Last update: 2025-03-13 14:32:31 UTC
README
A field for storing, validating and formatting IBAN codes.
Background
"The International Bank Account Number (IBAN) is an internationally agreed system of identifying bank accounts across national borders to facilitate the communication and processing of cross border transactions with a reduced risk of transcription errors." (Wikipedia).
This plugin adds a field type to store and validate IBAN codes. It provides a Twig extension to format IBANs in different formats.
Requirements
- Craft CMS >= 4.0.0
Installation
Open your terminal and go to your Craft project:
cd /path/to/project
composer require codemonauts/craft-iban-field
./craft install/plugin iban
Usage
After installation, the control panel can be used to create IBAN fields.
Twig Filter
You can use the |iban
filter to format an IBAN code in different ways. The default is print
:
{{ entry.myIban|iban }} {# Output: "DE89 3704 0044 0532 0130 00" #} {{ entry.myIban|iban('print') }} {# Output: "DE89 3704 0044 0532 0130 00" #} {{ entry.myIban|iban('electronic') }} {# Output: "DE89370400440532013000" #} {{ entry.myIban|iban('anonymized') }} {# Output: "XXXXXXXXXXXXXXXXXX3000" #}
With ❤ by codemonauts