public function AjaxPageControllerBase::processFormRequest in Forena Reports 8
Process the post requests for an action.
1 call to AjaxPageControllerBase::processFormRequest()
- AjaxPageControllerBase::response in src/
Controller/ AjaxPageControllerBase.php - Return the response based on ajax pramters.
File
- src/
Controller/ AjaxPageControllerBase.php, line 329
Class
Namespace
Drupal\forena\ControllerCode
public function processFormRequest() {
if (!empty($_REQUEST['form_id'])) {
$form_id = $_REQUEST['form_id'];
$this
->processForm($form_id);
}
}