function _quant_quant_options in Quant 7
Helper function to provide quant options
2 calls to _quant_quant_options()
- quant_admin_settings in ./
quant.admin.inc - Provide admin settings form
- _quant_quant_option_defaults in ./
quant.admin.inc - Helper function to provide quant option defaults
File
- ./
quant.admin.inc, line 121 - Admin callbacks
Code
function _quant_quant_options() {
// Get available quants
$options = array();
$quants = quant_get_quants();
foreach ($quants as $quant) {
$options[$quant->id] = $quant->label;
}
return $options;
}