| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function initialize($default, $local, $protected) { |
||
| 14 | global $license; |
||
| 15 | |||
| 16 | foreach($license as $key => $data) { |
||
| 17 | $this->choices[] = $key; |
||
| 18 | $this->lang[$this->key . '_o_' . $key] = $data['name']; // stored in setting |
||
| 19 | } |
||
| 20 | |||
| 21 | parent::initialize($default, $local, $protected); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |