class ActivityRevisionsController in Opigno module 3.x
Same name and namespace in other branches
- 8 src/Controller/ActivityRevisionsController.php \Drupal\opigno_module\Controller\ActivityRevisionsController
Class OpignoAnswerController.
Returns responses for Answer routes.
@package Drupal\opigno_module\Controller
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\opigno_module\Controller\ActivityRevisionsController implements ContainerInjectionInterface
Expanded class hierarchy of ActivityRevisionsController
File
- src/
Controller/ ActivityRevisionsController.php, line 22
Namespace
Drupal\opigno_module\ControllerView source
class ActivityRevisionsController extends ControllerBase implements ContainerInjectionInterface {
/**
* Preview activity revision.
*/
public function previewActivityRevision($opigno_activity, $opigno_activity_revision) {
$vids = $opigno_activity
->revisionIds();
if (!in_array($opigno_activity_revision, $vids)) {
throw new NotFoundHttpException();
}
$activity = $this
->entityTypeManager()
->getStorage('opigno_activity')
->loadRevision($opigno_activity_revision);
$page = \Drupal::entityTypeManager()
->getViewBuilder('opigno_activity')
->view($activity, 'activity');
return $page;
}
/**
* Generates an overview table of older revisions of a Answer .
*
* @param \Drupal\opigno_module\Entity\OpignoActivity $opigno_activity
* A Answer object.
*
* @return array
* An array as expected by drupal_render().
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function revisionOverview(OpignoActivityInterface $opigno_activity) {
$account = $this
->currentUser();
$langcode = $opigno_activity
->language()
->getId();
$langname = $opigno_activity
->language()
->getName();
$languages = $opigno_activity
->getTranslationLanguages();
$has_translations = count($languages) > 1;
$opigno_activity_storage = $this
->entityTypeManager()
->getStorage('opigno_activity');
$build['#title'] = $has_translations ? $this
->t('@langname revisions for %title', [
'@langname' => $langname,
'%title' => $opigno_activity
->label(),
]) : $this
->t('Revisions for %title', [
'%title' => $opigno_activity
->label(),
]);
$header = [
$this
->t('Revision'),
$this
->t('Name'),
$this
->t('Operations'),
];
$revert_permission = $account
->hasPermission('administer activity entities');
$delete_permission = $account
->hasPermission('administer activity entities');
$rows = [];
$vids = $opigno_activity
->revisionIds();
foreach ($vids as $vid) {
/** @var \Drupal\opigno_module\Entity\OpignoAnswer $revision */
$revision = $opigno_activity_storage
->loadRevision($vid);
// Only show revisions that are affected by the language that is being
// displayed.
if ($revision
->hasTranslation($langcode)) {
$username = [
'#theme' => 'username',
'#account' => $revision
->getRevisionUser(),
];
// Use revision link to link to revisions that are not active.
$date = \Drupal::service('date.formatter')
->format($revision
->getRevisionCreationTime(), 'short');
if ($vid != $opigno_activity
->getRevisionId()) {
$link = Link::fromTextAndUrl($date, new Url('entity.opigno_activity.revision-preview', [
'opigno_activity' => $opigno_activity
->id(),
'opigno_activity_revision' => $vid,
]))
->toString();
}
else {
$link = $opigno_activity
->toLink($date)
->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')
->renderPlain($username),
'message' => [
'#markup' => $revision
->getRevisionLogMessage(),
'#allowed_tags' => Xss::getHtmlTagList(),
],
],
],
];
$row[] = $column;
$row[] = [
'data' => $revision
->label(),
];
if ($revision
->isDefaultRevision()) {
$row[] = [
'data' => [
'#prefix' => '<em>',
'#markup' => $this
->t('Current revision'),
'#suffix' => '</em>',
],
];
foreach ($row as &$current) {
$current['class'] = [
'revision-current',
];
}
}
else {
$links = [];
if ($revert_permission) {
$links['revert'] = [
'title' => $this
->t('Revert'),
'url' => $has_translations ? Url::fromRoute('entity.opigno_activity.translation_revert', [
'opigno_activity' => $opigno_activity
->id(),
'opigno_activity_revision' => $vid,
'langcode' => $langcode,
]) : Url::fromRoute('entity.opigno_activity.revision_revert', [
'opigno_activity' => $opigno_activity
->id(),
'opigno_activity_revision' => $vid,
]),
];
}
if ($delete_permission) {
$links['delete'] = [
'title' => $this
->t('Delete'),
'url' => Url::fromRoute('entity.opigno_activity.revision_delete', [
'opigno_activity' => $opigno_activity
->id(),
'opigno_activity_revision' => $vid,
]),
];
}
$row[] = [
'data' => [
'#type' => 'operations',
'#links' => $links,
],
];
}
$rows[] = $row;
}
}
$build['opigno_activity_revisions_table'] = [
'#theme' => 'table',
'#rows' => $rows,
'#header' => $header,
];
return $build;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ActivityRevisionsController:: |
public | function | Preview activity revision. | |
ActivityRevisionsController:: |
public | function | Generates an overview table of older revisions of a Answer . | |
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 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:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
46 |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
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. | |
ControllerBase:: |
protected | function | Returns the state storage 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. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
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. | 4 |
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. |