updated core and modules

This commit is contained in:
Bachir Soussi Chiadmi
2017-09-09 16:27:51 +02:00
parent 027aa99b32
commit 41863f872c
7810 changed files with 318922 additions and 83631 deletions
+7 -7
View File
@@ -35,17 +35,17 @@
* @ingroup language_negotiation
*/
function hook_language_types_info() {
return array(
'custom_language_type' => array(
return [
'custom_language_type' => [
'name' => t('Custom language'),
'description' => t('A custom language type.'),
'locked' => FALSE,
),
'fixed_custom_language_type' => array(
],
'fixed_custom_language_type' => [
'locked' => TRUE,
'fixed' => array('custom_language_negotiation_method'),
),
);
'fixed' => ['custom_language_negotiation_method'],
],
];
}
/**