You are here

class Invoke in Forena Reports 8

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

Class Invoke

Plugin annotation


@FrxAjaxCommand(
  id = "invoke"
)

Hierarchy

Expanded class hierarchy of Invoke

File

src/FrxPlugin/AjaxCommand/Invoke.php, line 19

Namespace

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

  /**
   * {@inheritdoc}
   */
  public function commandFromSettings(array $settings) {
    $selector = $settings['selector'];
    $method = $settings['method'];
    $arguments = $this
      ->getJSONText($settings, 'arguments');
    $command = new InvokeCommand($selector, $method, $arguments);
    return $command;
  }

}

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.
Invoke::commandFromSettings public function Settings are passed into this factory from either the skin or the report element. If there are complex structures when used in the arguments they will be passed in the 'text' setting. These should be decoded by any plugin intending to use… Overrides AjaxCommandInterface::commandFromSettings