You are here

ClearContextualLinks.php in Paragraphs frontend ui 8.2

File

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

namespace Drupal\paragraphs_frontend_ui\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Class ClearContextualLinks.
 */
class ClearContextualLinks implements CommandInterface {

  /**
   * Render custom ajax command.
   *
   * @return array RenderArray
   *   Command function.
   */
  public function render() {
    return [
      'command' => 'clearContextualLinks',
    ];
  }

}

Classes

Namesort descending Description
ClearContextualLinks Class ClearContextualLinks.