| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function getModel($entity) { |
||
| 35 | if ( \Links::isMain($entity) ) { |
||
| 36 | $modelClass = 'Serverfireteam\\Panel\\'.$entity; |
||
| 37 | } else { |
||
| 38 | if (!empty(\Config::get('panel.modelPath'))) { |
||
| 39 | $modelClass = $this->getNameSpace() . \Config::get('panel.modelPath') . '\\' . $entity; |
||
| 40 | } |
||
| 41 | else { |
||
| 42 | $modelClass = $this->getNameSpace() . $entity; |
||
| 43 | } |
||
| 44 | |||
| 45 | } |
||
| 46 | return $modelClass; |
||
| 47 | } |
||
| 48 | } |
||
| 49 |