| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 30 | public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) { |
||
| 31 | $element = parent::formElement($items, $delta, $element, $form, $form_state); |
||
| 32 | |||
| 33 | $element['value']['#attributes']['class'][] = 'enable-fontawesome-iconpicker'; |
||
| 34 | $element['#attached']['library'][] = 'df_tools_icons/fontawesome_textfield'; |
||
| 35 | |||
| 36 | return $element; |
||
| 37 | } |
||
| 38 | |||
| 40 |