DisqusController.php in Disqus 8
File
src/Controller/DisqusController.php
View source
<?php
namespace Drupal\disqus\Controller;
use Drupal\Core\Controller\ControllerBase;
class DisqusController extends ControllerBase {
public function closeWindow() {
$build = [];
$build['#markup'] = $this
->t('Thank you for logging in. Please close this window, or <a href="@clickhere">click here</a> to continue.', [
'@clickhere' => 'javascript:window.close();',
]);
$build['#attached']['html_head'][] = [
[
'#tag' => 'script',
'#value' => 'window.close();',
],
'disqus_js',
];
return $build;
}
}