function 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

Code

function theme_indentation($variables) {
    $output = '';
    for ($n = 0; $n < $variables['size']; $n++) {
        $output .= '<div class="indentation">&nbsp;</div>';
    }
    return $output;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.