| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class ImageMultiple extends Field |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @inheritdoc |
||
| 13 | */ |
||
| 14 | public $ddsDataType = 'json'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @inheritdoc |
||
| 18 | */ |
||
| 19 | public function getFilterField() |
||
| 20 | { |
||
| 21 | return ['class' => 'neon\\core\\form\\fields\\Text']; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritdoc |
||
| 26 | */ |
||
| 27 | public function getComponentDetails() |
||
| 28 | { |
||
| 29 | return [ |
||
| 30 | 'icon' => 'fa fa-image', 'group' => 'Media', 'order' => 80 |
||
| 31 | ]; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getValueDisplay($context='') |
||
| 49 | } |
||
| 50 | } |
||
| 51 |