| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 26 | protected function buildForm() |
||
| 27 | { |
||
| 28 | $form = $this->formBuilder; |
||
| 29 | |||
| 30 | $form->add( |
||
| 31 | "googlemapsapi_key", |
||
| 32 | "text", |
||
| 33 | array( |
||
| 34 | 'data' => Dealer::getConfigValue("googlemapsapi_key"), |
||
| 35 | 'label' => Translator::getInstance()->trans("Google Maps Api Key"), |
||
| 36 | 'label_attr' => array( |
||
| 37 | 'for' => "googlemapsapi_key" |
||
| 38 | ), |
||
| 39 | ) |
||
| 40 | ); |
||
| 41 | |||
| 42 | } |
||
| 43 | |||
| 53 | } |