You are here

function shorten_keys_form in Shorten URLs 7

Same name and namespace in other branches
  1. 7.2 shorten.admin.inc \shorten_keys_form()

Returns HTML representing the shorten keys admin form.

1 string reference to 'shorten_keys_form'
shorten_menu in ./shorten.module
Implements hook_menu().

File

./shorten.admin.inc, line 208
Settings for the Shorten module.

Code

function shorten_keys_form() {
  $form = drupal_get_form('shorten_keys');
  return drupal_render($form);
}