class PageController in Restrict IP 8
Same name and namespace in other branches
- 8.2 src/Controller/PageController.php \Drupal\restrict_ip\Controller\PageController
- 3.x src/Controller/PageController.php \Drupal\restrict_ip\Controller\PageController
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\restrict_ip\Controller\PageController implements PageControllerInterface
Expanded class hierarchy of PageController
File
- src/
Controller/ PageController.php, line 16
Namespace
Drupal\restrict_ip\ControllerView source
class PageController extends ControllerBase implements PageControllerInterface {
/**
* The Form Builder service
*
* @var \Drupal\Core\Form\FormBuilderInterface
*/
protected $formBuilder;
/**
* The Config Factory service
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* The current user
*
* @var \Drupal\Core\Session\AccountProxyInterface
*/
protected $currentUser;
/**
* The Module Handler service
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* Constructs the PageController object for the Restrict IP module
*
* @param \Drupal\Core\Form\FormBuilderInterface $formBuilder
* The Form Builder service
* @param \Drupal\Core\Config\ConfigFactoryInterface $configFactory
* The Config Factory service
* @param \Drupal\Core\Session\AccountProxyInterface $currentUser;
* The current user
* @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler
* The Module Handler service
*/
public function __construct(FormBuilderInterface $formBuilder, ConfigFactoryInterface $configFactory, AccountProxyInterface $currentUser, ModuleHandlerInterface $moduleHandler) {
$this->formBuilder = $formBuilder;
$this->configFactory = $configFactory;
$this->currentUser = $currentUser;
$this->moduleHandler = $moduleHandler;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('form_builder'), $container
->get('config.factory'), $container
->get('current_user'), $container
->get('module_handler'));
}
/**
* {@inheritdoc}
*/
public function configPage() {
$page = [
'#prefix' => '<div id="restrict_ip_config_page">',
'#suffix' => '</div.',
'form' => $this->formBuilder
->getForm('\\Drupal\\restrict_ip\\Form\\ConfigForm'),
];
return $page;
}
/**
* {@inheritdoc}
*/
public function accessDeniedPage() {
if (!isset($_SESSION['restrict_ip']) || !$_SESSION['restrict_ip']) {
return new RedirectResponse(Url::fromRoute('<front>')
->toString());
}
$config = $this->configFactory
->get('restrict_ip.settings');
$page['access_denied'] = [
'#markup' => $this
->t('The page you are trying to access cannot be accessed from your IP address.'),
'#prefix' => '<p>',
'#suffix' => '</p>',
];
$contact_mail = $config
->get('mail_address');
if (strlen($contact_mail)) {
$contact_mail = str_replace('@', '[at]', $contact_mail);
$mail_markup = new FormattableMarkup('<span id="restrict_ip_contact_mail">@address</span>', [
'@address' => $contact_mail,
]);
$page['contact_us'] = [
'#prefix' => '<p>',
'#suffix' => '</p>',
'#markup' => $this
->t('If you feel this is in error, please contact an administrator at @email.', [
'@email' => $mail_markup,
]),
'#attached' => [
'library' => [
'restrict_ip/mail_fixer',
],
],
];
}
if ($config
->get('allow_role_bypass')) {
if ($this->currentUser
->isAuthenticated()) {
$url = Url::fromRoute('user.logout');
$link = Link::fromTextAndUrl($this
->t('Logout'), $url);
$page['logout_link'] = [
'#markup' => $link
->toString(),
'#prefix' => '<p>',
'#suffix' => '</p>',
];
}
elseif ($config
->get('bypass_action') === 'provide_link_login_page') {
$url = Url::fromRoute('user.login');
$link = Link::fromTextAndUrl($this
->t('Sign in'), $url);
$page['login_link'] = [
'#markup' => $link
->toString(),
'#prefix' => '<p>',
'#suffix' => '</p>',
];
}
}
$this->moduleHandler
->alter('restrict_ip_access_denied_page', $page);
return $page;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity manager service. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
ControllerBase:: |
protected | function | Returns the state storage service. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PageController:: |
protected | property |
* The Config Factory service
*
* Overrides ControllerBase:: |
|
PageController:: |
protected | property |
* The current user
*
* Overrides ControllerBase:: |
|
PageController:: |
protected | property |
* The Form Builder service
*
* Overrides ControllerBase:: |
|
PageController:: |
protected | property |
* The Module Handler service
*
* Overrides ControllerBase:: |
|
PageController:: |
public | function |
* Overrides PageControllerInterface:: |
|
PageController:: |
public | function |
* Overrides PageControllerInterface:: |
|
PageController:: |
public static | function |
* Overrides ControllerBase:: |
|
PageController:: |
public | function | * Constructs the PageController object for the Restrict IP module * * | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |