| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function getHref(): string |
||
| 10 | { |
||
| 11 | $self = $this->getThis(); |
||
| 12 | $moduleView = $self->getType()->getModuleView(); |
||
| 13 | if ($moduleView === null) { |
||
| 14 | return ''; |
||
| 15 | } |
||
| 16 | |||
| 17 | return sprintf( |
||
| 18 | '%s?%s=1&id=%d', |
||
| 19 | $moduleView->getPhpPage(), |
||
| 20 | $self->getType()->getViewIdentifier(), |
||
| 21 | $self->getId() |
||
| 22 | ); |
||
| 25 |