HistoryRenderCallback.php

Same filename and directory in other branches
  1. 8.9.x core/modules/history/src/HistoryRenderCallback.php
  2. 10 core/modules/history/src/HistoryRenderCallback.php
  3. 11.x core/modules/history/src/HistoryRenderCallback.php

Namespace

Drupal\history

File

core/modules/history/src/HistoryRenderCallback.php

View source
<?php

namespace Drupal\history;

use Drupal\Core\Render\Element\RenderCallbackInterface;

/**
 * Render callback object.
 */
class HistoryRenderCallback implements RenderCallbackInterface {
    
    /**
     * #lazy_builder callback; attaches the last read timestamp for a node.
     *
     * @param int $node_id
     *   The node ID for which to attach the last read timestamp.
     *
     * @return array
     *   A renderable array containing the last read timestamp.
     */
    public static function lazyBuilder($node_id) {
        $element = [];
        $element['#attached']['drupalSettings']['history']['lastReadTimestamps'][$node_id] = (int) history_read($node_id);
        return $element;
    }

}

Classes

Title Deprecated Summary
HistoryRenderCallback Render callback object.

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