function ttext_widget_info in Internationalization 5
Implementation of hook_widget_info().
File
- experimental/
ttext.module, line 124 - Defines simple ttext field types.
Code
function ttext_widget_info() {
return array(
'ttext' => array(
'label' => 'Translatable Text Field',
'field types' => array(
'ttext',
),
),
);
}