theme_indentation($size = 1)
drupal/includes/theme.inc, line 1729
Create a standard indentation div. Used for drag and drop tables.
$size Optional. The number of indentations to create.
A string containing indentations.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_indentation($size = 1) {
$output = '';
for ($n = 0; $n < $size; $n++) {
$output .= '<div class="indentation"> </div>';
}
return $output;
}