| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public static function handle(SetElementTableAttributeHtmlEvent $event) |
||
| 25 | { |
||
| 26 | if ($event->attribute === 'organizations') { |
||
| 27 | $event->html = \Craft::$app->getView()->renderTemplate( |
||
| 28 | 'organizations/_components/tableAttributes/organizations', |
||
| 29 | [ |
||
| 30 | 'organizations' => $event->sender->getOrganizations(['status' => null])->all() |
||
| 31 | ] |
||
| 32 | ); |
||
| 33 | } |
||
| 34 | } |
||
| 35 | } |
||
| 36 |