1 language.install | language_schema() |
Implements hook_schema().
File
- core/
modules/ language/ language.install, line 34 - Install, update and uninstall functions for the language module.
Code
function language_schema() {
$schema['language'] = array(
'description' => 'List of all available languages in the system.',
'fields' => array(
'langcode' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
'description' => "Language code, e.g. 'de' or 'en-US'.",
),
'name' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
'description' => 'Language name.',
),
'direction' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'Direction of language (Left-to-Right = 0, Right-to-Left = 1).',
),
'enabled' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'Enabled flag (1 = Enabled, 0 = Disabled).',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'Weight, used in lists of languages.',
),
),
'primary key' => array('langcode'),
'indexes' => array(
'list' => array('weight', 'name'),
),
);
return $schema;
}