public function TawktoController::admin in tawk.to Live Chat (Drupal 8) 8
File
- tawk_to/
src/ Controller/ TawktoController.php, line 21
Class
Namespace
Drupal\tawk_to\ControllerCode
public function admin() {
$widget = $this->generator
->widget();
$this->loggerFactory
->get('default')
->debug($widget);
$keyValueSvc = $this
->keyValue('tawk_to');
// $keyValueSvc->set('widget', '<script>the widget is this</script>');
$widget = $keyValueSvc
->get('widget');
return new Response($widget);
}