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