function theme_form_required_marker

Returns HTML for a marker for required form elements.

Parameters

$variables: An associative array containing:

  • element: An associative array containing the properties of the element.

Related topics

2 theme calls to theme_form_required_marker()
theme_field_multiple_value_form in modules/field/field.form.inc
Returns HTML for an individual form element.
theme_form_element_label in includes/form.inc
Returns HTML for a form element label and required marker.

File

includes/form.inc, line 4331

Code

function theme_form_required_marker($variables) {
    // This is also used in the installer, pre-database setup.
    $t = get_t();
    $attributes = array(
        'class' => 'form-required',
        'title' => $t('This field is required.'),
    );
    return '<span' . drupal_attributes($attributes) . '>*</span>';
}

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