Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
25 | public function getFieldValidationOptions() |
||
26 | { |
||
27 | $min = ($this->getSetting('MinValue')) ? $this->getSetting('MinValue') : ''; |
||
28 | $max = ($this->getSetting('MaxValue')) ? $this->getSetting('MaxValue') : ''; |
||
29 | |||
30 | return [ |
||
31 | new NumericField($this->getSettingName('MinValue'), _t('Moo_EditableField.MINVALUE', 'Min Value'), $min), |
||
32 | new NumericField($this->getSettingName('MaxValue'), _t('Moo_EditableField.MAXVALUE', 'Max Value'), $max), |
||
33 | ]; |
||
34 | } |
||
35 | } |
||
36 |