You are here

public function ActivityRevisionsController::revisionOverview in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/Controller/ActivityRevisionsController.php \Drupal\opigno_module\Controller\ActivityRevisionsController::revisionOverview()

Generates an overview table of older revisions of a Answer .

Parameters

\Drupal\opigno_module\Entity\OpignoActivity $opigno_activity: A Answer object.

Return value

array An array as expected by drupal_render().

Throws

\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException

\Drupal\Component\Plugin\Exception\PluginNotFoundException

File

src/Controller/ActivityRevisionsController.php, line 51

Class

ActivityRevisionsController
Class OpignoAnswerController.

Namespace

Drupal\opigno_module\Controller

Code

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;
}