34 lines
792 B
PHP
34 lines
792 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Generates a first name + last name format.
|
|
*/
|
|
|
|
$plugin = array(
|
|
'title' => t('Name (single line)'),
|
|
'format callback' => 'addressfield_format_name_oneline_generate',
|
|
'type' => 'name',
|
|
'weight' => 0,
|
|
);
|
|
|
|
/**
|
|
* Format callback.
|
|
*
|
|
* @see CALLBACK_addressfield_format_callback()
|
|
*/
|
|
function addressfield_format_name_oneline_generate(&$format, $address) {
|
|
$format['name_block'] = array(
|
|
'#type' => 'addressfield_container',
|
|
'#attributes' => array('class' => array('addressfield-container-inline', 'name-block')),
|
|
'#weight' => -100,
|
|
);
|
|
$format['name_block']['name_line'] = array(
|
|
'#title' => t('Full name'),
|
|
'#tag' => 'div',
|
|
'#attributes' => array('class' => array('name-block')),
|
|
'#size' => 30,
|
|
'#required' => TRUE,
|
|
);
|
|
}
|