You are here

function shorten_admin_form in Shorten URLs 7

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

Returns HTML representing the shorten admin form.

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

File

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

Code

function shorten_admin_form() {
  $form = drupal_get_form('shorten_admin');
  return drupal_render($form);
}