You are here

public function DefaultController::shortenCsEditForm in Shorten URLs 8.2

File

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

Class

DefaultController
Default controller for the shorten_cs module.

Namespace

Drupal\shorten_cs\Controller

Code

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