Version 1
[yaffs-website] / web / core / modules / views / src / Ajax / HighlightCommand.php
diff --git a/web/core/modules/views/src/Ajax/HighlightCommand.php b/web/core/modules/views/src/Ajax/HighlightCommand.php
new file mode 100644 (file)
index 0000000..b04c0be
--- /dev/null
@@ -0,0 +1,41 @@
+<?php
+
+namespace Drupal\views\Ajax;
+
+use Drupal\Core\Ajax\CommandInterface;
+
+/**
+ * Provides an AJAX command for highlighting a certain new piece of html.
+ *
+ * This command is implemented in Drupal.AjaxCommands.prototype.viewsHighlight.
+ */
+class HighlightCommand implements CommandInterface {
+
+  /**
+   * A CSS selector string.
+   *
+   * @var string
+   */
+  protected $selector;
+
+  /**
+   * Constructs a \Drupal\views\Ajax\HighlightCommand object.
+   *
+   * @param string $selector
+   *   A CSS selector.
+   */
+  public function __construct($selector) {
+    $this->selector = $selector;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function render() {
+    return [
+      'command' => 'viewsHighlight',
+      'selector' => $this->selector,
+    ];
+  }
+
+}