heimrichhannot / contao-be_explanation
This package is abandoned and no longer maintained.
The author suggests using the heimrichhannot/contao-be_explanation-bundle package instead.
This module offers a simple backend explanation form field (inputType).
Package info
github.com/heimrichhannot/contao-be_explanation
Language:CSS
Type:contao-module
pkg:composer/heimrichhannot/contao-be_explanation
1.0.7
2017-08-16 12:16 UTC
Requires
- php: ~5.4 || ~7.0
- contao-community-alliance/composer-plugin: ~2.4 || ~3.0
- contao/core-bundle: ^3.5.1 || ~4.1
- heimrichhannot/contao-haste_plus: ~1.0
README
https://github.com/heimrichhannot/contao-be_explanation-bundle
Backend Explanation
This module offers a simple backend explanation form field (inputType).
Technical instructions
Just add the field to some of your data container arrays as follows:
$GLOBALS['TL_DCA']['tl_*']['fields']['myExplanation'] = array
(
'inputType' => 'explanation',
'eval' => array(
'text' => &$GLOBALS['TL_LANG']['tl_*']['myExplanation'], // this is a string, not an array
'class' => 'tl_info', // all contao message css classes are possible
'tl_class' => 'long'
)
);