class UserController in User Revision 8
Returns responses for User revision routes.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\user_revision\Controller\UserController implements ContainerInjectionInterface
Expanded class hierarchy of UserController
File
- src/
Controller/ UserController.php, line 19
Namespace
Drupal\user_revision\ControllerView source
class UserController extends ControllerBase implements ContainerInjectionInterface {
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatter
*/
protected $dateFormatter;
/**
* The access_check.user.revision service.
*
* @var \Drupal\user_revision\Access\UserRevisionAccessCheck
*/
protected $userRevisionAccessCheck;
/**
* Constructs a UserController object.
*
* @param \Drupal\Core\Datetime\DateFormatter $date_formatter
* The date formatter service.
*/
public function __construct(DateFormatter $date_formatter, UserRevisionAccessCheck $accessCheck) {
$this->dateFormatter = $date_formatter;
$this->userRevisionAccessCheck = $accessCheck;
$this
->entityTypeManager();
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('date.formatter'), $container
->get('access_check.user.revision'));
}
/**
* Generates an overview table of older revisions of a user.
*
* @param \Drupal\user\UserInterface $user
* A user object.
*
* @return array
* An array as expected by drupal_render().
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
* @throws \Drupal\Core\Entity\EntityMalformedException
*/
public function revisionOverview(UserInterface $user) {
$account = $this
->currentUser();
$user_storage = $this->entityTypeManager
->getStorage('user');
$build = array();
$build['#title'] = $this
->t('Revisions for %title', array(
'%title' => $user
->label(),
));
$header = array(
$this
->t('Revision'),
$this
->t('Operations'),
);
$rows = array();
$vids = user_revision_ids($user);
foreach (array_reverse($vids) as $vid) {
if ($revision = $user_storage
->loadRevision($vid)) {
$revision_author = $revision->revision_uid->entity;
$username = [
'#theme' => 'username',
'#account' => $revision_author,
];
// Use revision link to link to revisions that are not active.
$date = $this->dateFormatter
->format($revision->revision_timestamp->value, 'short');
if ($vid == $user
->getRevisionId()) {
$link = $user
->toLink($date)
->toString();
}
else {
$link = Link::fromTextAndUrl($date, new Url('entity.user.revision', array(
'user' => $user
->id(),
'user_revision' => $vid,
)))
->toString();
}
$row = [];
$column = [
'data' => [
'#type' => 'inline_template',
'#template' => '{% trans %}{{ date }} by {{ username }}{% endtrans %}{% if message %}<p class="revision-log">{{ message }}</p>{% endif %}',
'#context' => [
'date' => $link,
'username' => \Drupal::service('renderer')
->render($username),
'message' => [
'#markup' => $revision->revision_log->value,
'#allowed_tags' => Xss::getHtmlTagList(),
],
],
],
];
// @todo Simplify once https://www.drupal.org/node/2334319 lands.
// $this->renderer->addCacheableDependency($column['data'], $username);
$row[] = $column;
if ($vid == $user
->getRevisionId()) {
$row[] = [
'data' => [
'#prefix' => '<em>',
'#markup' => $this
->t('Current revision'),
'#suffix' => '</em>',
],
];
$rows[] = [
'data' => $row,
'class' => [
'revision-current',
],
];
}
else {
$links = [];
if ($this->userRevisionAccessCheck
->checkAccess($revision, $account, 'update')) {
$links['revert'] = [
'title' => $vid < $user
->getRevisionId() ? $this
->t('Revert') : $this
->t('Set as current revision'),
'url' => Url::fromRoute('user.revision_revert_confirm', [
'user' => $user
->id(),
'user_revision' => $vid,
]),
];
}
if ($this->userRevisionAccessCheck
->checkAccess($revision, $account, 'delete')) {
$links['delete'] = [
'title' => $this
->t('Delete'),
'url' => Url::fromRoute('user.revision_delete_confirm', [
'user' => $user
->id(),
'user_revision' => $vid,
]),
];
}
$row[] = [
'data' => [
'#type' => 'operations',
'#links' => $links,
],
];
$rows[] = $row;
}
}
}
$build['user_revisions_table'] = array(
'#theme' => 'table',
'#rows' => $rows,
'#header' => $header,
'#attached' => array(
'library' => array(
'user_revision/user.admin',
),
),
);
return $build;
}
/**
* Displays a user revision.
*
* @param int $user
* The user ID.
* @param int $user_revision
* The user revision ID.
*
* @return array
* An array suitable for drupal_render().
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function revisionShow($user, $user_revision) {
$user_history = $this->entityTypeManager
->getStorage('user')
->loadRevision($user_revision);
if ($user_history
->id() != $user) {
throw new NotFoundHttpException();
}
/* @var $view_builder \Drupal\Core\Entity\EntityViewBuilder */
$view_builder = $this->entityTypeManager
->getViewBuilder($user_history
->getEntityTypeId());
return $view_builder
->view($user_history);
}
/**
* Page title callback for a user revision.
*
* @param int $user_revision
* The user revision ID.
*
* @return string
* The page title.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function revisionPageTitle($user_revision) {
$user = $this->entityTypeManager
->getStorage('user')
->loadRevision($user_revision);
return $this
->t('Revision of %title from %date', array(
'%title' => $user
->label(),
'%date' => $this->dateFormatter
->format($user
->get('revision_timestamp')->value),
));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity manager. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
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. | |
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. | |
UserController:: |
protected | property | The date formatter service. | |
UserController:: |
protected | property | The access_check.user.revision service. | |
UserController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
UserController:: |
public | function | Generates an overview table of older revisions of a user. | |
UserController:: |
public | function | Page title callback for a user revision. | |
UserController:: |
public | function | Displays a user revision. | |
UserController:: |
public | function | Constructs a UserController object. |