
Backend/Func/CustFldsDisplay.pm - Custom Field Values
This function displays a HTML table with the passed-in Custom Field values.
my $html = $self->CustFldsDisplay($fields_hashref, $gpid_num);
Example
my $fields = # ... list of custom fields for the current forum
my $gpid = $self->_param('gpid');
$ret .= $self->CustFldsDisplay($fields, $gpid);
|