| Conditions | 4 |
| Paths | 5 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function getCategory() { |
||
| 32 | |||
| 33 | if (!$this->category) { |
||
| 34 | |||
| 35 | $category_id = $this->getModel()['category_id'] ?: $this->getModel()['id']; |
||
| 36 | $categoryName = $this->get_category_by_id($category_id); |
||
| 37 | |||
| 38 | if ($categoryName) { |
||
| 39 | $this->setCategory($categoryName); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | return $this->category; |
||
| 43 | } |
||
| 44 | |||
| 74 | } |