SettingsController.php in Real-time SEO for Drupal 8.2
File
src/Controller/SettingsController.php
View source
<?php
namespace Drupal\yoast_seo\Controller;
use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\Url;
use Drupal\Core\Link;
class SettingsController extends ControllerBase {
public function index() {
$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 @url.', [
'@url' => Link::fromTextAndUrl($this
->t('configuration page'), 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 @url.', [
'@url' => Link::fromTextAndUrl($this
->t('configuration page'), 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 @url.', [
'@url' => Link::fromTextAndUrl($this
->t('Metatag configuration page'), 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,
];
return $form;
}
}