function lingotek_config_header in Lingotek Translation 7.6
Same name and namespace in other branches
- 7.7 lingotek.config.inc \lingotek_config_header()
1 call to lingotek_config_header()
File
- ./
lingotek.config.inc, line 24 - Config grid form elements
Code
function lingotek_config_header() {
$header = array(
// Define the tentative source header
'lid' => array(
'data' => t('ID'),
'field' => 'lid',
'width' => '2%',
),
'set_name' => array(
'data' => t('Config Set Name'),
'field' => 'set_id',
'width' => '15%',
),
'source' => array(
'data' => t('Source'),
'field' => 'source',
'width' => '25%',
),
'source_uploaded' => array(
'data' => t('Source Uploaded'),
),
'translations' => array(
'data' => t('Translations'),
'field' => 'current_target_count',
),
'location' => array(
'data' => t('Location'),
'field' => 'location',
),
'context' => array(
'data' => t('Context'),
'field' => 'context',
),
'doc_id' => array(
'data' => t('Doc ID'),
'field' => 'document_id',
'display' => 'none',
),
'textgroup' => array(
'data' => t('Textgroup'),
'field' => 'textgroup',
),
);
return $header;
}