views-ui-display-tab-setting.tpl.php in Views (for Drupal 7) 8.3
Template for each row inside the "boxes" on the display query edit screen.
2 theme calls to views-ui-display-tab-setting.tpl.php
- ViewUI::getDisplayDetails in views_ui/
lib/ Drupal/ views_ui/ ViewUI.php - Helper function to get the display details section of the edit UI.
- ViewUI::getFormBucket in views_ui/
lib/ Drupal/ views_ui/ ViewUI.php - Add information about a section to a display.
File
views_ui/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 $attributes['class'];
?> <?php
print $zebra;
?> clearfix" <?php
print $attributes;
?>>
<?php
if ($description) {
?>
<span class="label"><?php
print $description;
?></span>
<?php
}
?>
<?php
if ($settings_links) {
?>
<?php
print $settings_links;
?>
<?php
}
?>
</div>