You are here

function quant_build_data in Quant 6

Wrapper for data building functions

Parameters

&$quant: A quant object

1 call to quant_build_data()
quant_process in ./quant.module
Process quants and convert them to charts with data plotted

File

./quant.module, line 258

Code

function quant_build_data(&$quant) {
  quant_include('data');
  $function = "_quant_build_data_{$quant->dataType}";
  $function($quant);
}