class Changed in Forena Reports 8
Same name and namespace in other branches
- 7.4 AjaxCommand/Changed.php \Drupal\forena\FrxPlugin\AjaxCommand\Changed
Class Changed
Plugin annotation
@FrxAjaxCommand(
id = "changed"
)
Hierarchy
- class \Drupal\forena\FrxPlugin\AjaxCommand\AjaxCommandBase implements AjaxCommandInterface
- class \Drupal\forena\FrxPlugin\AjaxCommand\Changed
Expanded class hierarchy of Changed
File
- src/
FrxPlugin/ AjaxCommand/ Changed.php, line 21
Namespace
Drupal\forena\FrxPlugin\AjaxCommandView source
class Changed extends AjaxCommandBase {
/**
* Changed command
*
* Propierties
*
* @param array $settings
* @return \Drupal\Core\Ajax\ChangedCommand
*
*/
public function commandFromSettings(array $settings) {
$selector = $this
->getSetting($settings, 'selector');
$asterisk = $this
->getSetting($settings, 'asterisk');
return new ChangedCommand($selector, $asterisk);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AjaxCommandBase:: |
protected static | property | ||
AjaxCommandBase:: |
public | function | Get json text. | |
AjaxCommandBase:: |
public | function | ||
AjaxCommandBase:: |
public static | function | Report Replacer. | |
Changed:: |
public | function |
Changed command Overrides AjaxCommandInterface:: |