Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heimrichhannot/contao-banking_widgets
https://github.com/heimrichhannot/contao-banking_widgets
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/heimrichhannot/contao-banking_widgets
- Owner: heimrichhannot
- Created: 2018-01-10T11:22:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-10T13:12:13.000Z (almost 7 years ago)
- Last Synced: 2023-08-21T11:17:03.288Z (over 1 year ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Contao Banking Widgets
> 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](https://github.com/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 ''"
]
```