get_current_language(); $is_all_languages = $module->is_all_languages(); if (!$is_all_languages) { $controls->warnings[] = 'You are configuring the language "' . $current_language . '". Switch to "all languages" to see every options.'; } // Profile options are still inside the main options if ($controls->is_action()) { if ($controls->is_action('save')) { $module->save_options($controls->data, '', null, $current_language); $controls->add_message_saved(); } if ($controls->is_action('reset')) { $module->reset_options(); $controls->data = $module->get_options('', $current_language); $controls->add_message_reset(); } } else { $controls->data = $module->get_options('', $current_language); } ?>