views-ui-display-tab-setting.tpl.php

Template for each row inside the "boxes" on the display query edit screen.

2 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_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
<?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

}
?>
  <?php

if ($settings_links) {
    ?>
    <?php

    print $settings_links;
    ?>
  <?php

}
?>
</div>