| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct( |
||
| 14 | $name, |
||
| 15 | $label, |
||
| 16 | $showMap = true, |
||
| 17 | $openMap = false, |
||
| 18 | $fieldsInModal = false, |
||
| 19 | $saveExtendedData = false, |
||
| 20 | $autoDetectLatLngValue = false |
||
| 21 | ) { |
||
| 22 | parent::__construct($name, $label); |
||
| 23 | $this->showMap = $showMap; |
||
| 24 | $this->openMap = $openMap; |
||
| 25 | $this->inModal = $fieldsInModal ?? false; |
||
| 26 | $this->saveExtendedData = $saveExtendedData; |
||
| 27 | $this->autoDetectLatLngValue = $autoDetectLatLngValue; |
||
| 28 | } |
||
| 35 |