public function AjaxCommandInterface::commandFromSettings in Forena Reports 7.4
Same name and namespace in other branches
- 8 src/FrxPlugin/AjaxCommand/AjaxCommandInterface.php \Drupal\forena\FrxPlugin\AjaxCommand\AjaxCommandInterface::commandFromSettings()
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 the interior element of an AJAX command.
Parameters
array $settings:
Return value
mixed The ajax command object expected by drupal.
15 methods override AjaxCommandInterface::commandFromSettings()
- AddCss::commandFromSettings in AjaxCommand/
AddCss.php - 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…
- After::commandFromSettings in AjaxCommand/
After.php - 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…
- Alert::commandFromSettings in AjaxCommand/
Alert.php - Append::commandFromSettings in AjaxCommand/
Append.php - JQuery Append Command
- Before::commandFromSettings in AjaxCommand/
Before.php - JQuery Before Command
File
- AjaxCommand/
AjaxCommandInterface.php, line 25
Class
- AjaxCommandInterface
- Implements ajax commands.
Namespace
Drupal\forena\FrxPlugin\AjaxCommandCode
public function commandFromSettings(array $settings);