function addressfield_format_name_full_generate in Address Field 7
Format callback.
See also
CALLBACK_addressfield_format_callback()
1 string reference to 'addressfield_format_name_full_generate'
- name-full.inc in plugins/
format/ name-full.inc
File
- plugins/
format/ name-full.inc, line 20
Code
function addressfield_format_name_full_generate(&$format, $address) {
$format['name_block'] = array(
'#type' => 'addressfield_container',
'#attributes' => array(
'class' => array(
'addressfield-container-inline',
'name-block',
),
),
'#weight' => -100,
// The addressfield is considered empty without a country, hide all fields
// until one is selected.
'#access' => !empty($address['country']),
);
// Maxlength is set to 127 so that the name_line still can be created without
// exceeding the char limit from the database.
$format['name_block']['first_name'] = array(
'#title' => t('First name'),
'#size' => 30,
'#maxlength' => 127,
'#required' => TRUE,
'#attributes' => array(
'class' => array(
'first-name',
),
'autocomplete' => 'given-name',
),
);
$format['name_block']['last_name'] = array(
'#title' => t('Last name'),
'#size' => 30,
'#maxlength' => 127,
'#required' => TRUE,
'#prefix' => ' ',
'#attributes' => array(
'class' => array(
'last-name',
),
'autocomplete' => 'family-name',
),
);
}