| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 5.1971 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | 2 | public function format(IEvent $event, $parameter) { |
|
| 34 | 2 | if (\OC::$server->getGroupManager()->groupExists($parameter) === true) { |
|
| 35 | $gid = \OC::$server->getGroupManager()->get($parameter); |
||
| 36 | if (gettype($gid) !== null) { |
||
| 37 | $parameter = $gid->getDisplayName(); |
||
| 38 | } |
||
| 39 | } |
||
| 40 | 2 | return '<parameter>' . Util::sanitizeHTML($parameter) . '</parameter>'; |
|
| 41 | } |
||
| 42 | } |
||
| 43 |