Search code examples
drupal-7

How to programmatically add a language in drupal 7?


I'm in drupal 7 and I want to programmatically add a language except the default language when I'm writing a new profile. And set it to default.

I don't want to use translation: http://localize.drupal.org/translate/downloads

Can anyone help?! Thank you :)


Solution

  • With the Locale locale_add_language function. It is possible to create new languages. It also allows to set newly created language as default. In addition you can set default language by setting "language_default" variable to language object.

    variable_set('language_default', $default);