Last active
December 7, 2019 11:15
-
-
Save eS-IT/511e2aa6a083746c8f3e65c501672c66 to your computer and use it in GitHub Desktop.
contao_dca_Passwort
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| 'mypassword' => [ | |
| 'label' => &$GLOBALS['TL_LANG'][$table]['mypassword'], | |
| 'exclude' => true, | |
| 'inputType' => 'password', | |
| 'eval' => ['mandatory'=>true, 'preserveTags'=>true, 'minlength'=>\Contao\Config::get('minPasswordLength')], | |
| 'sql' => "varchar(128) NOT NULL default ''" | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment