| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 46 | final public function render($format, Doku_Renderer $renderer, $data): bool |
||
| 47 | { |
||
| 48 | $description = $data[0]; |
||
| 49 | if (empty($description)) { |
||
| 50 | return false; |
||
| 51 | } |
||
| 52 | |||
| 53 | if ($format === 'metadata') { |
||
| 54 | $renderer->meta['plugin_description']['keywords'] = $description; |
||
| 55 | return true; |
||
| 56 | } |
||
| 57 | return false; |
||
| 58 | } |
||
| 60 |