You are here

Remove.php in Forena Reports 8

File

src/FrxPlugin/AjaxCommand/Remove.php
View source
<?php

/**
 * Created by PhpStorm.
 * User: metzlerd
 * Date: 4/17/16
 * Time: 5:55 PM
 */
namespace Drupal\forena\FrxPlugin\AjaxCommand;

use Drupal\Core\Ajax\RemoveCommand;

/**
 * Class Remove
 * 
 * @FrxAjaxCommand(
 *   id = "remove"
 * )
 */
class Remove extends AjaxCommandBase {
  public function commandFromSettings(array $settings) {
    $selector = $this
      ->getSetting($settings, 'selector');
    return new RemoveCommand($selector);
  }

}

Classes

Namesort descending Description
Remove Class Remove