You are here

class Replace in Forena Reports 8

Same name and namespace in other branches
  1. 7.4 AjaxCommand/Replace.php \Drupal\forena\FrxPlugin\AjaxCommand\Replace

Replace command

Plugin annotation


@FrxAjaxCommand(
  id = "replace"
)

Hierarchy

Expanded class hierarchy of Replace

File

src/FrxPlugin/AjaxCommand/Replace.php, line 20

Namespace

Drupal\forena\FrxPlugin\AjaxCommand
View source
class Replace extends AjaxCommandBase {

  /**
   * JQuery Replace Command
   *
   * Settings:
   *   - selector: JQuery selector to use for Replace.
   *   - text: HTML to use to replace
   *
   * @param array $settings
   *   Settings for command
   * @return \Drupal\Core\Ajax\ReplaceCommand
   */
  public function commandFromSettings(array $settings) {
    $text = $this
      ->getSetting($settings, 'text');
    $selector = $this
      ->getSetting($settings, 'selector');
    return new ReplaceCommand($selector, $text, $settings);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AjaxCommandBase::$replacer protected static property
AjaxCommandBase::getJSONText public function Get json text.
AjaxCommandBase::getSetting public function
AjaxCommandBase::replacer public static function Report Replacer.
Replace::commandFromSettings public function JQuery Replace Command Overrides AjaxCommandInterface::commandFromSettings