function quant_get_quant_chart in Quant 7
Fetch a quant chart by ID
Parameters
$id: The quant chart id
Return value
A quant chart info, or NULL, if there is no quant with this ID
1 call to quant_get_quant_chart()
- quant_get_chart_plugin in ./
quant.module - Fetch the active chart plugin
File
- ./
quant.module, line 141
Code
function quant_get_quant_chart($id) {
$charts = quant_get_quant_charts();
return isset($charts[$id]) ? $charts[$id] : NULL;
}