| 1 | <?php |
||
| 14 | class StringField extends Field |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Render a string that can be truncated according to is length. |
||
| 19 | * |
||
| 20 | * @param $value |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 2 | public function render($value) |
|
| 24 | { |
||
| 25 | 2 | if ($this->options->get('translation')) { |
|
| 26 | $value = $this |
||
| 27 | 2 | ->translator |
|
| 28 | 2 | ->trans($value); |
|
| 29 | } |
||
| 30 | $maximumStringLength = $this |
||
| 31 | 2 | ->options |
|
| 32 | 2 | ->get('length'); |
|
| 33 | $replaceString = $this |
||
| 34 | 2 | ->options |
|
| 35 | 2 | ->get('replace'); |
|
| 36 | |||
| 37 | // truncate string if required |
||
| 38 | 2 | if ($maximumStringLength && strlen($value) > $maximumStringLength) { |
|
| 39 | $value = substr($value, 0, $maximumStringLength).$replaceString; |
||
| 40 | } |
||
| 41 | |||
| 42 | 2 | return $value; |
|
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Configure options resolver. |
||
| 47 | * |
||
| 48 | * @param OptionsResolver $resolver |
||
| 49 | */ |
||
| 50 | 2 | public function configureOptions(OptionsResolver $resolver) |
|
| 51 | { |
||
| 52 | 2 | $resolver->setDefaults([ |
|
| 53 | 2 | 'length' => $this->applicationConfiguration->getParameter('string_length'), |
|
| 54 | 2 | 'replace' => $this->applicationConfiguration->getParameter('string_length_truncate'), |
|
| 55 | 'translation' => true, |
||
| 56 | ]); |
||
| 57 | 2 | } |
|
| 58 | |||
| 59 | /** |
||
| 60 | * Return form type. |
||
| 61 | * |
||
| 62 | * @return string |
||
| 63 | */ |
||
| 64 | public function getType() |
||
| 68 | } |
||
| 69 |