function shorten_current_form in Shorten URLs 7
Same name and namespace in other branches
- 7.2 shorten.module \shorten_current_form()
Returns HTML representing the short URL form.
1 call to shorten_current_form()
- shorten_block_view in ./
shorten.module - Implements hook_block_view().
File
- ./
shorten.module, line 646 - Shortens URLs via external services.
Code
function shorten_current_form() {
$form = drupal_get_form('shorten_current');
return drupal_render($form);
}