You are here

SelectFeedCommand.php in Heartbeat 8

File

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

namespace Drupal\heartbeat\Ajax;


/**
 * Created by IntelliJ IDEA.
 * User: logicp
 * Date: 5/28/17
 * Time: 11:38 PM
 */
use Drupal\Core\Ajax\CommandInterface;
class SelectFeedCommand implements CommandInterface {
  protected $message;
  public function __construct($message) {
    $this->message = $message;
  }
  public function render() {
    return array(
      'command' => 'selectFeed',
      'feed' => $this->message,
    );
  }

}

Classes

Namesort descending Description
SelectFeedCommand