function theme_invoice_markup in Invoice 6
Same name and namespace in other branches
- 7 invoice.module \theme_invoice_markup()
Add extra markup info to a markup form field
Parameters
string $s_field_name:
mixed $value:
string $s_title:
File
- ./
invoice.module, line 879 - Invoice module
Code
function theme_invoice_markup($s_field_name, $value, $s_title) {
$markup_before = '<div id="edit-' . $s_field_name . '-wrapper" class="form-item">
<label for="edit-' . $s_field_name . '">' . $s_title . ':</label><div>';
$markup_after = '</div></div>';
return $markup_before . $value . $markup_after;
}