views-ui-display-tab-setting.tpl.php
Template for each row inside the "boxes" on the display query edit screen.
3 theme calls to views-ui-display-tab-setting.tpl.php
- views_ui_edit_form_get_bucket in includes/
admin.inc - Add information about a section to a display.
- views_ui_edit_form_get_build_from_option in includes/
admin.inc - Build a renderable array representing one option on the edit form.
- views_ui_get_display_tab_details in includes/
admin.inc - Helper function to get the display details section of the edit UI.
File
theme/views-ui-display-tab-setting.tpl.phpView source
- <?php
-
- /**
- * @file
- * Template for each row inside the "boxes" on the display query edit screen.
- */
- ?>
- <div class="views-display-setting <?php print $classes; ?> <?php print $zebra; ?> clearfix" <?php print $attributes; ?>>
- <?php if ($description): ?>
- <span class="label"><?php print $description; ?></span>
- <?php endif; ?>
- <?php if ($settings_links): ?>
- <?php print $settings_links; ?>
- <?php endif; ?>
- </div>
-