You are here

public function DefaultController::shorten_cs_delete_form in Shorten URLs 8

File

modules/shorten_cs/src/Controller/DefaultController.php, line 20
Contains \Drupal\shorten_cs\Controller\DefaultController.

Class

DefaultController
Default controller for the shorten_cs module.

Namespace

Drupal\shorten_cs\Controller

Code

public function shorten_cs_delete_form($service) {
  $form = \Drupal::formBuilder()
    ->getForm('shorten_cs_delete', $service);
  return \Drupal::service("renderer")
    ->render($form);
}