/home/techb158/l2hypotheques.com/wp-content/plugins/elementor/modules/link-in-bio
Edit: /home/techb158/l2hypotheques.com/wp-content/plugins/elementor/modules/link-in-bio/module.php (2084B)
get_widgets_style_list();
$has_custom_breakpoints = Plugin::$instance->breakpoints->has_custom_breakpoints();
foreach ( $widget_styles as $widget_style_name => $widget_has_responsive_style ) {
$should_load_responsive_css = $widget_has_responsive_style ? $has_custom_breakpoints : false;
wp_register_style(
$widget_style_name,
$this->get_frontend_file_url( "{$widget_style_name}{$direction_suffix}.min.css", $should_load_responsive_css ),
[ 'elementor-frontend' ],
$should_load_responsive_css ? null : ELEMENTOR_VERSION
);
}
}
private function get_widgets_style_list(): array {
return [
'widget-link-in-bio' => self::WIDGET_HAS_CUSTOM_BREAKPOINTS, // TODO: Remove in v3.27.0 [ED-15717]
'widget-link-in-bio-base' => self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-2' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-3' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-4' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-5' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
'widget-link-in-bio-var-7' => ! self::WIDGET_HAS_CUSTOM_BREAKPOINTS,
];
}
}