You are here

function shorten_cs_delete_form in Shorten URLs 7.2

Same name and namespace in other branches
  1. 7 shorten_cs.admin.inc \shorten_cs_delete_form()

Returns HTML representing the shorten service delete form.

1 string reference to 'shorten_cs_delete_form'
shorten_cs_menu in ./shorten_cs.module
Implements hook_menu().

File

./shorten_cs.admin.inc, line 209
Provides the configuration page for Shorten URLs Custom Services.

Code

function shorten_cs_delete_form($service) {
  $form = drupal_get_form('shorten_cs_delete', $service);
  return drupal_render($form);
}