function _sheetnode_phpexcel_get_valueformat in Sheetnode 7
Same name and namespace in other branches
- 5 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_valueformat()
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_valueformat()
- 7.2 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_valueformat()
1 call to _sheetnode_phpexcel_get_valueformat()
- _sheetnode_phpexcel_import_cell in modules/sheetnode_phpexcel/ sheetnode_phpexcel.import.inc 
File
- modules/sheetnode_phpexcel/ sheetnode_phpexcel.import.inc, line 514 
- Import sheetnodes through PHPExcel for xls or xlsx spreadsheets.
Code
function _sheetnode_phpexcel_get_valueformat($numberformat) {
  $valueformat = $numberformat
    ->getFormatCode();
  if (strtolower($valueformat) == 'general') {
    return FALSE;
  }
  return $valueformat;
}