You are here

function i18nstrings_admin_refresh_page in Internationalization 6

@file Admin page callbacks for the i18nstrings module.

1 string reference to 'i18nstrings_admin_refresh_page'
i18nstrings_menu in i18nstrings/i18nstrings.module
Implementation of hook_menu().

File

i18nstrings/i18nstrings.admin.inc, line 10
Admin page callbacks for the i18nstrings module.

Code

function i18nstrings_admin_refresh_page() {
  $output = '';
  $output .= drupal_get_form('i18nstrings_admin_refresh');
  return $output;
}