You are here

function theme_shorten_cs_admin in Shorten URLs 8

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

Themes the configuration page.

File

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

Code

function theme_shorten_cs_admin() {
  $form = \Drupal::formBuilder()
    ->getForm('shorten_cs_add_form');
  return shorten_cs_services_table() . \Drupal::service("renderer")
    ->render($form);
}