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