function _statspro_form_field_name in Statistics Pro 6.2
Returns the form field name to be used for this specific field.
Parameters
string $name:
int $id:
Return value
string The form field name
2 calls to _statspro_form_field_name()
- statspro_path_aggregator_list_form in ./
statspro_path_aggregated.inc - statspro_path_aggregator_list_form_submit in ./
statspro_path_aggregated.inc - Implemnetation of submit() for the statspro_path_aggregator_list_form form.
File
- ./
statspro_path_aggregated.inc, line 104
Code
function _statspro_form_field_name($name, $id) {
return sprintf('%s-%u', $name, $id);
}