NodeAccessTestAutoBubblingController.php

Same filename and directory in other branches
  1. 9 core/modules/node/tests/node_access_test_auto_bubbling/src/Controller/NodeAccessTestAutoBubblingController.php
  2. 8.9.x core/modules/node/tests/node_access_test_auto_bubbling/src/Controller/NodeAccessTestAutoBubblingController.php
  3. 10 core/modules/node/tests/node_access_test_auto_bubbling/src/Controller/NodeAccessTestAutoBubblingController.php

Namespace

Drupal\node_access_test_auto_bubbling\Controller

File

core/modules/node/tests/node_access_test_auto_bubbling/src/Controller/NodeAccessTestAutoBubblingController.php

View source
<?php

namespace Drupal\node_access_test_auto_bubbling\Controller;

use Drupal\Core\Controller\ControllerBase;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\node\NodeInterface;

/**
 * Returns a node ID listing.
 */
class NodeAccessTestAutoBubblingController extends ControllerBase implements ContainerInjectionInterface {
    
    /**
     * Lists the three latest published node IDs.
     *
     * @return array
     *   A render array.
     */
    public function latest() {
        $nids = $this->entityTypeManager()
            ->getStorage('node')
            ->getQuery()
            ->accessCheck(TRUE)
            ->condition('status', NodeInterface::PUBLISHED)
            ->sort('created', 'DESC')
            ->range(0, 3)
            ->execute();
        return [
            '#markup' => $this->t('The three latest nodes are: @nids.', [
                '@nids' => implode(', ', $nids),
            ]),
        ];
    }

}

Classes

Title Deprecated Summary
NodeAccessTestAutoBubblingController Returns a node ID listing.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.