function theme_quant_page in Quant 6
Same name and namespace in other branches
- 7 quant.theme.inc \theme_quant_page()
Theme wrapper for the quant analytics page
Parameters
$form: The datepicker form, in HTML.
$charts: An array of generated charts.
1 theme call to theme_quant_page()
- quant_page in includes/
pages.inc - The analytics page callback
File
- includes/
theme.inc, line 16 - Theme wrappers
Code
function theme_quant_page($form, $charts) {
$content = '';
$content .= $form;
if ($charts) {
foreach ($charts as $chart) {
$content .= $chart;
}
}
return '<div id="quant-page">' . $content . '</div>';
}