You are here

function shorten_form_shorten_form in Shorten URLs 7

Same name and namespace in other branches
  1. 7.2 shorten.module \shorten_form_shorten_form()

Returns HTML representing the shorten form.

1 call to shorten_form_shorten_form()
shorten_block_view in ./shorten.module
Implements hook_block_view().
1 string reference to 'shorten_form_shorten_form'
shorten_menu in ./shorten.module
Implements hook_menu().

File

./shorten.module, line 467
Shortens URLs via external services.

Code

function shorten_form_shorten_form() {
  $form = drupal_get_form('shorten_form_shorten');
  return drupal_render($form);
}