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.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * Template for each row inside the "boxes" on the display query edit screen.
  5. */
  6. ?>
  7. <div class="views-display-setting <?php print $classes; ?> <?php print $zebra; ?> clearfix" <?php print $attributes; ?>>
  8. <?php if ($description): ?>
  9. <span class="label"><?php print $description; ?></span>
  10. <?php endif; ?>
  11. <?php if ($settings_links): ?>
  12. <?php print $settings_links; ?>
  13. <?php endif; ?>
  14. </div>