function entity_test_form_node_form_alter

Implements hook_form_BASE_FORM_ID_alter().

File

drupal/core/modules/system/tests/modules/entity_test/entity_test.module, line 146
Test module for the entity API providing an entity type for testing.

Code

function entity_test_form_node_form_alter(&$form, &$form_state, $form_id) {
  $langcode = $form_state['controller']
    ->getFormLangcode($form_state);
  variable_set('entity_form_langcode', $langcode);
}