You are here

public function DefaultController::shortenCsDeleteForm in Shorten URLs 8.2

File

modules/shorten_cs/src/Controller/DefaultController.php, line 51

Class

DefaultController
Default controller for the shorten_cs module.

Namespace

Drupal\shorten_cs\Controller

Code

public function shortenCsDeleteForm($service) {
  $form = $this
    ->formBuilder()
    ->getForm('shorten_cs_delete', $service);
  return $this->renderer
    ->render($form);
}