You are here

OpignoScrollToLastMessage.php in Opigno messaging 3.x

File

src/Ajax/OpignoScrollToLastMessage.php
View source
<?php

namespace Drupal\opigno_messaging\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Ajax command to scroll to the last message.
 *
 * @package Drupal\opigno_messaging\Ajax
 */
class OpignoScrollToLastMessage implements CommandInterface {

  /**
   * {@inheritdoc}
   */
  public function render() : array {
    return [
      'command' => 'opignoScrollToLastMessage',
    ];
  }

}

Classes

Namesort descending Description
OpignoScrollToLastMessage Ajax command to scroll to the last message.