| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class Number extends Real |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * The DDS data type to store the value of the field |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | public $ddsDataType = 'real'; |
||
| 21 | |||
| 22 | public function registerScripts($view) |
||
| 23 | { |
||
| 24 | ElAsset::register($view); |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritdoc |
||
| 29 | */ |
||
| 30 | public function getFieldHtml() |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | public function getComponentDetails() |
||
| 45 | } |