You are here

public function AnswersNodeController::addPage in Answers 8

Displays add content links for available content types.

Redirects to node/add/[type] if only one content type is available.

Return value

array|\Symfony\Component\HttpFoundation\RedirectResponse A render array for a list of the node types that can be added; however, if there is only one node type defined for the site, the function will return a RedirectResponse to the node add page for that one node type.

Overrides NodeController::addPage

File

src/Controller/AnswersNodeController.php, line 15

Class

AnswersNodeController
Returns my customizations for Node routes.

Namespace

Drupal\answers\Controller

Code

public function addPage() {
  $build = [
    '#theme' => 'node_add_list',
    '#cache' => [
      'tags' => $this
        ->entityTypeManager()
        ->getDefinition('node_type')
        ->getListCacheTags(),
    ],
  ];
  $content = [];

  // Only use node types the user has access to.
  foreach ($this
    ->entityTypeManager()
    ->getStorage('node_type')
    ->loadMultiple() as $type) {
    if ($type
      ->id() != 'answers_answer') {
      $access = $this
        ->entityTypeManager()
        ->getAccessControlHandler('node')
        ->createAccess($type
        ->id(), NULL, [], TRUE);
      if ($access
        ->isAllowed()) {
        $content[$type
          ->label()] = $type;
      }
    }
    ksort($content);
    $this->renderer
      ->addCacheableDependency($build, $access);
  }

  // Bypass the node/add listing if only one content type is available.
  if (count($content) == 1) {
    $type = array_shift($content);
    return $this
      ->redirect('node.add', [
      'node_type' => $type
        ->id(),
    ]);
  }
  $build['#content'] = $content;
  return $build;
}