function theme_indentation in Drupal 7
Same name and namespace in other branches
- 6 includes/theme.inc \theme_indentation()
Returns HTML for an indentation div; used for drag and drop tables.
Parameters
$variables: An associative array containing:
- size: Optional. The number of indentations to create.
Related topics
4 theme calls to theme_indentation()
- field_ui_table_pre_render in modules/
field_ui/ field_ui.admin.inc - Pre-render callback for field_ui_table elements.
- theme_book_admin_table in modules/
book/ book.admin.inc - Returns HTML for a book administration form.
- theme_menu_overview_form in modules/
menu/ menu.admin.inc - Returns HTML for the menu overview form into a table.
- theme_taxonomy_overview_terms in modules/
taxonomy/ taxonomy.admin.inc - Returns HTML for a terms overview form as a sortable list of terms.
File
- includes/
theme.inc, line 2410 - The theme system, which controls the output of Drupal.
Code
function theme_indentation($variables) {
$output = '';
for ($n = 0; $n < $variables['size']; $n++) {
$output .= '<div class="indentation"> </div>';
}
return $output;
}