Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function getStatusClass($object, $statusName = null, $default = '') |
||
30 | { |
||
31 | switch ($object->getStatus()) { |
||
32 | case CommentInterface::STATUS_INVALID: |
||
33 | return 'danger'; |
||
34 | case CommentInterface::STATUS_MODERATE: |
||
35 | return 'warning'; |
||
36 | case CommentInterface::STATUS_VALID: |
||
37 | return 'success'; |
||
38 | default: |
||
39 | return null; |
||
40 | } |
||
41 | } |
||
42 | } |
||
43 |