You are here

class Append in Forena Reports 8

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

Append command

Plugin annotation


@FrxAjaxCommand(
  id = "append"
)

Hierarchy

Expanded class hierarchy of Append

File

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

Namespace

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

  /**
   * JQuery Append Command
   *
   * Settings:
   *   - selector: JQuery selector to use for append.
   *   - text: HTML to use to replace
   *
   * @param array $settings
   *   Settings for command
   * @return \Drupal\Core\Ajax\AppendCommand
   */
  public function commandFromSettings(array $settings) {
    $text = $this
      ->getSetting($settings, 'text');
    $selector = $this
      ->getSetting($settings, 'selector');
    return new AppendCommand($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.
Append::commandFromSettings public function JQuery Append Command Overrides AjaxCommandInterface::commandFromSettings