| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 53 | public function Field($properties = []) |
||
| 54 | { |
||
| 55 | $this->setDescription( |
||
| 56 | DBField::create_field( |
||
| 57 | 'HTMLText', |
||
| 58 | SelectedColourPickerFormFieldSwatches::get_swatches_html( |
||
| 59 | $this->name, |
||
| 60 | $this->value, |
||
| 61 | $this->getListMap($this->source), |
||
| 62 | (bool) $this->isBgColour |
||
| 63 | ) |
||
| 64 | ) |
||
| 65 | ); |
||
| 66 | |||
| 67 | return parent::Field(); |
||
| 68 | } |
||
| 70 |