| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function getStaticHtml($value, ElementInterface $element): string |
||
| 28 | { |
||
| 29 | if (! ($value instanceof Query)) { |
||
| 30 | return ''; |
||
| 31 | } |
||
| 32 | |||
| 33 | return \Craft::$app->getView()->renderTemplate( |
||
| 34 | 'saml-sp/_cp/fields/external-id', |
||
| 35 | [ |
||
| 36 | 'identities' => $value, |
||
| 37 | 'element' => $element, |
||
| 38 | 'baseProviderUrl' => UrlHelper::cpUrl( |
||
| 39 | 'saml-sp/metadata' |
||
| 40 | ), |
||
| 41 | ] |
||
| 42 | ); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |