function _sheetnode_phpexcel_insert_hash in Sheetnode 5
Same name and namespace in other branches
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_insert_hash()
- 7.2 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_insert_hash()
- 7 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_insert_hash()
1 call to _sheetnode_phpexcel_insert_hash()
- _sheetnode_phpexcel_import_cell in modules/
sheetnode_phpexcel/ sheetnode_phpexcel.import.inc
File
- modules/
sheetnode_phpexcel/ sheetnode_phpexcel.import.inc, line 376
Code
function _sheetnode_phpexcel_insert_hash(&$sc, $key, $style) {
$hash = @$sc[$key . 'hash'][$style];
if (is_null($hash)) {
$hash = count($sc[$key . 's']) + 1;
$sc[$key . 's'][$hash] = $style;
$sc[$key . 'hash'][$style] = $hash;
}
return $hash;
}