DisableDomain.php in Domain Access 8
Namespace
Drupal\domain\Plugin\ActionFile
domain/src/Plugin/Action/DisableDomain.phpView source
<?php
namespace Drupal\domain\Plugin\Action;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;
use Drupal\domain\DomainInterface;
/**
* Sets the domain status property to 0.
*
* @Action(
* id = "domain_disable_action",
* label = @Translation("Disable domain record"),
* type = "domain"
* )
*/
class DisableDomain extends ActionBase {
/**
* {@inheritdoc}
*/
public function execute(DomainInterface $domain = NULL) {
$domain
->disable();
}
/**
* {@inheritdoc}
*/
public function executeMultiple(array $objects) {
foreach ($objects as $object) {
if ($object instanceof DomainInterface) {
$object
->disable();
}
}
}
/**
* {@inheritdoc}
*/
public function access($object, AccountInterface $account = NULL, $return_as_object = FALSE) {
$access_result = AccessResult::allowedIfHasPermission($account, 'administer domains');
return $return_as_object ? $access_result : $access_result
->isAllowed();
}
}
Classes
Name | Description |
---|---|
DisableDomain | Sets the domain status property to 0. |