Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/views_ui/templates/views-ui-display-tab-setting.html.twig @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
1 {# | |
2 /** | |
3 * @file | |
4 * Default theme implementation for Views UI display tab settings. | |
5 * | |
6 * Template for each row inside the "boxes" on the display query edit screen. | |
7 * | |
8 * Available variables: | |
9 * - attributes: HTML attributes such as class for the container. | |
10 * - description: The description or label for this setting. | |
11 * - settings_links: A list of links for this setting. | |
12 * - defaulted: A boolean indicating the setting is in its default state. | |
13 * - overridden: A boolean indicating the setting has been overridden from the | |
14 * default. | |
15 * | |
16 * @see template_preprocess_views_ui_display_tab_setting() | |
17 * | |
18 * @ingroup themeable | |
19 */ | |
20 #} | |
21 {% | |
22 set classes = [ | |
23 'views-display-setting', | |
24 'clearfix', | |
25 'views-ui-display-tab-setting', | |
26 defaulted ? 'defaulted', | |
27 overridden ? 'overridden', | |
28 ] | |
29 %} | |
30 <div{{ attributes.addClass(classes) }}> | |
31 {% if description -%} | |
32 <span class="label">{{ description }}</span> | |
33 {%- endif %} | |
34 {% if settings_links %} | |
35 {{ settings_links|safe_join('<span class="label"> | </span>') }} | |
36 {% endif %} | |
37 </div> |