function _feeds_xls_get_value in Feeds XLS 7
Helper function to get a value that can be inserted into a cell.
2 calls to _feeds_xls_get_value()
- feeds_xls_create_csv_of_data in ./
feeds_xls.template.inc - Create a CSV file with data in which can later be converted to a proper XLS file.
- feeds_xls_set_headers in ./
feeds_xls.template.inc
File
- ./
feeds_xls.template.inc, line 487
Code
function _feeds_xls_get_value($value) {
if (substr($value, 0, 1) == '=') {
return "'" . $value;
}
return $value;
}