'; } return $partials; } /** * @return array */ public static function getDisplayTypes(array $props):array { try { return \Civi\Api4\SearchDisplay::getFields(FALSE) ->setLoadOptions(array_diff($props, ['tag'])) ->addWhere('name', '=', 'type') ->execute() ->first()['options']; } catch (\Exception $e) { return []; } } }