bootstrap_italia-8.x-0.x-dev/components/components-2/deprecated.html.twig
components/components-2/deprecated.html.twig
{#
/**
* @file
* Template for deprecated components.
* Docs: ---
* Latest revision: ---
*
* Parameters:
* - old (string) (default: '')
* - Old component name
* - new (string) (default: '')
* - New component name
*
* Examples:
{% include '@bi-bcl/deprecated.html.twig' with {
old: 'bootstrap_italia_components/*/*.twig',
new: 'bi-bcl/*/*.html.twig'
} %}
*
*/
#}
{% set show_error = true %}
{% if show_error %}
{% set message = 'The @' ~ old ~ ' component is deprecated, use @' ~ new ~ ' instead.' %}
{% deprecated message %}
<script>
console.warn('{{ message }}');
</script>
{% endif %}
