| 1 | <?php |
||
| 12 | class Text extends ContentType |
||
| 13 | { |
||
| 14 | public $html = '<span class="text bigtext">%data%</span>'; |
||
| 15 | public $css = '%field% { text-align: center; vertical-align: middle; }'; |
||
| 16 | public $input = 'text'; |
||
| 17 | public $output = 'text'; |
||
| 18 | public $usable = true; |
||
| 19 | public $exemple = '@web/images/text.preview.jpg'; |
||
| 20 | public $canPreview = true; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function __construct($config = []) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function processData($data) |
||
| 39 | } |
||
| 40 |