class After in Forena Reports 8
Same name and namespace in other branches
- 7.4 AjaxCommand/After.php \Drupal\forena\FrxPlugin\AjaxCommand\After
Class After
Plugin annotation
@FrxAjaxCommand(
id = "after"
)
Hierarchy
- class \Drupal\forena\FrxPlugin\AjaxCommand\AjaxCommandBase implements AjaxCommandInterface
- class \Drupal\forena\FrxPlugin\AjaxCommand\After
Expanded class hierarchy of After
File
- src/
FrxPlugin/ AjaxCommand/ After.php, line 20
Namespace
Drupal\forena\FrxPlugin\AjaxCommandView source
class After extends AjaxCommandBase {
/**
* {@inheritdoc}
*/
public function commandFromSettings(array $settings) {
$selector = $this
->getSetting($settings, 'selector');
$text = $this
->getSetting($settings, 'text');
return new AfterCommand($selector, $text, $settings);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
After:: |
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:: |
|
AjaxCommandBase:: |
protected static | property | ||
AjaxCommandBase:: |
public | function | Get json text. | |
AjaxCommandBase:: |
public | function | ||
AjaxCommandBase:: |
public static | function | Report Replacer. |