You are here

function theme_shorten_cs_admin in Shorten URLs 7

Same name and namespace in other branches
  1. 8.2 modules/shorten_cs/shorten_cs.admin.inc \theme_shorten_cs_admin()
  2. 8 modules/shorten_cs/shorten_cs.admin.inc \theme_shorten_cs_admin()
  3. 6 shorten_cs.admin.inc \theme_shorten_cs_admin()
  4. 7.2 shorten_cs.admin.inc \theme_shorten_cs_admin()

Themes the configuration page.

File

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

Code

function theme_shorten_cs_admin() {
  $form = drupal_get_form('shorten_cs_add_form');
  return shorten_cs_services_table() . drupal_render($form);
}