YoastSeoController.php in Real-time SEO for Drupal 8
File
src/Controller/YoastSeoController.php
View source
<?php
namespace Drupal\yoast_seo\Controller;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Url;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
class YoastSeoController extends ControllerBase {
public function tokens(Request $request) {
$metatag_token = \Drupal::service('metatag.token');
$token_values = array();
$tokens = $request->request
->get('tokens');
$data = $request->request
->get('data');
if (is_null($data)) {
$data = array();
}
foreach ($tokens as $token) {
$token_values[$token] = $metatag_token
->replace($token, $data);
}
return new JsonResponse($token_values);
}
public function settings() {
$form = [];
$xmlsitemap_enabled = \Drupal::moduleHandler()
->moduleExists('xmlsitemap');
$simple_sitemap_enabled = \Drupal::moduleHandler()
->moduleExists('simple_sitemap');
if ($xmlsitemap_enabled && $simple_sitemap_enabled) {
$xmlsitemap_description = $this
->t('It looks like you have both the XML Sitemap and Simple XML Sitemap module enabled. Please uninstall one of them as they could interfere with each other.');
}
elseif ($xmlsitemap_enabled) {
if (\Drupal::currentUser()
->hasPermission('administer xmlsitemap')) {
$xmlsitemap_description = $this
->t('You can configure the XML Sitemap settings at the <a href="@url">configuration page</a>', [
'@url' => Url::fromRoute('xmlsitemap.admin_search')
->toString(),
]);
}
else {
$xmlsitemap_description = $this
->t('You do not have the permission to administer the XML Sitemap.');
}
}
elseif (\Drupal::moduleHandler()
->moduleExists('simple_sitemap')) {
if (\Drupal::currentUser()
->hasPermission('administer simple_sitemap')) {
$xmlsitemap_description = $this
->t('You can configure the Simple XML Sitemap settings at the <a href="@url">configuration page</a>.', [
'@url' => Url::fromRoute('simple_sitemap.settings')
->toString(),
]);
}
else {
$xmlsitemap_description = $this
->t('You do not have the permission to administer the Simple XML Sitemap.');
}
}
else {
$xmlsitemap_description = $this
->t('You currently do not have a sitemap module enabled. We strongly recommend you to install a sitemap module. You can download the <a href="@project1-url">@project1-name</a> or <a href="@project2-url">@project2-name</a> module to use as sitemap generator.', [
'@project1-url' => 'https://www.drupal.org/project/simple_sitemap',
'@project1-name' => 'Simple Sitemap',
'@project2-url' => 'https://www.drupal.org/project/xmlsitemap',
'@project2-name' => 'XML Sitemap',
]);
}
$form['xmlsitemap'] = [
'#type' => 'details',
'#title' => $this
->t('Sitemap'),
'#markup' => $xmlsitemap_description,
'#open' => TRUE,
];
if (\Drupal::currentUser()
->hasPermission('administer meta tags')) {
$metatag_description = $this
->t('You can configure and override the Metatag title & description default settings at the <a href="@url">Metatag configuration page</a>.', [
'@url' => Url::fromRoute('entity.metatag_defaults.collection')
->toString(),
]);
}
else {
$metatag_description = $this
->t('You currently do not have the permission to administer Metatag.');
}
$form['metatag'] = [
'#type' => 'details',
'#title' => $this
->t('Configure Metatag default templates'),
'#markup' => $metatag_description,
'#open' => TRUE,
];
$config_form = \Drupal::formBuilder()
->getForm('Drupal\\yoast_seo\\Form\\YoastSeoConfigForm');
$form['yoast_seo'] = [
'#type' => 'details',
'#title' => 'Configure Real-time SEO by bundles',
'#description' => 'Select the bundles Real-time SEO will be enabled for',
'#markup' => render($config_form),
'#open' => TRUE,
];
return $form;
}
}