public static function Frx::parms in Forena Reports 7.4
Same name and namespace in other branches
- 7.5 Frx.inc \Frx::parms()
Helper method to return current url parameters.
Return value
unknown
13 calls to Frx::parms()
- forena_report_add_parameter_form_submit in ./
forena.report.inc - forena_report_add_template_submit in ./
forena.report.inc - forena_report_data_block_form in ./
forena.report.inc - A form to preview and add data blocks to an existing report
- forena_report_edit_template_submit in ./
forena.report.inc - Edit an existing id based on the template.
- forena_report_field_form_submit in ./
forena.report.inc
File
- ./
Frx.inc, line 17 - Frx.incL General Forena Reporting Class
Class
Code
public static function parms() {
$parms = $_GET;
unset($parms['q']);
return $parms;
}