heimrichhannot / contao-banking_widgets
Banking widgets for Contao Open Source CMS and Frontendedit Module
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 0
Open Issues: 0
Type:contao-module
pkg:composer/heimrichhannot/contao-banking_widgets
Requires
- php: ~5.6 || ~7.0
- cmpayments/iban: ~1.0
- contao-community-alliance/composer-plugin: ~2.4 || ~3.0
- contao/core-bundle: ^3.5.1 || ~4.1
- heimrichhannot/contao-formhybrid: ~2.8
This package is not auto-updated.
Last update: 2022-02-01 13:11:46 UTC
README
This module is currently only used in a single project and not generally tested. Feedback is welcome.
This module is a collection of widgets for banking purpose. They are designed to use with Formhybrid module.
Install
With composer:
composer require heimrichhannot/contao-banking_widgets
Widgets
IBAN
A widget to input iban number. It make use of cmpayments/iban to validate IBAN inputs.
Usage
'iban'                => [
    'label'     => &$GLOBALS['TL_LANG']['tl_submission']['iban'],
    'exclude'   => true,
    'inputType' => 'ibanwidget',
    'eval'      => [
        'encrypt'   => true,
        'mandatory' => true,
        'tl_class'  => 'w50 clr'
    ],
    'sql'       => "varchar(255) NOT NULL default ''"
]