| Total Complexity | 1 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ElevationField extends FormField |
||
| 8 | { |
||
| 9 | private static $default_classes = ['elevation-field']; |
||
|
|
|||
| 10 | |||
| 11 | protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_CUSTOM; |
||
| 12 | |||
| 13 | protected $schemaComponent = 'ElevationField'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Attributes to be given for this field type. |
||
| 17 | * |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | public function getAttributes() |
||
| 38 |