Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3.1852 |
Changes | 0 |
1 | <?php |
||
27 | 3 | public function getStaticHtml($value, ElementInterface $element): string |
|
28 | { |
||
29 | 3 | if (! ($value instanceof Query)) { |
|
30 | 3 | 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 |