| | |
| | | * - DOUBLE |
| | | * - CURRENCY (Formats digits in currency notation) |
| | | * - VARCHAR (No format check) |
| | | * - DATE (Date format, converts from and to linux timestamps automatically) |
| | | * - DATE (Date format, converts from and to UNIX timestamps automatically) |
| | | * |
| | | * Formtype: |
| | | * - TEXT (Normal text field) |
| | |
| | | // If Datasource is set, get the data from there |
| | | if(isset($field['datasource']) && is_array($field['datasource'])) { |
| | | if(is_array($field["value"])) { |
| | | $field["value"] = $field["value"] + $this->getDatasourceData($field, $record); |
| | | $field["value"] = array_merge($field["value"],$this->getDatasourceData($field, $record)); |
| | | } else { |
| | | $field["value"] = $this->getDatasourceData($field, $record); |
| | | } |
| | |
| | | } |
| | | } |
| | | |
| | | ?> |
| | | ?> |