function _sheetnode_phpexcel_get_font in Sheetnode 7.2
Same name and namespace in other branches
- 5 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_font()
- 6 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_font()
- 7 modules/sheetnode_phpexcel/sheetnode_phpexcel.import.inc \_sheetnode_phpexcel_get_font()
1 call to _sheetnode_phpexcel_get_font()
- _sheetnode_phpexcel_import_cell in modules/
sheetnode_phpexcel/ sheetnode_phpexcel.import.inc
File
- modules/
sheetnode_phpexcel/ sheetnode_phpexcel.import.inc, line 459 - Import sheetnodes through PHPExcel for xls or xlsx spreadsheets.
Code
function _sheetnode_phpexcel_get_font($font) {
return ($font
->getItalic() ? 'italic' : 'normal') . ' ' . ($font
->getBold() ? 'bold' : 'normal') . ' ' . ($font
->getSize() . 'pt') . ' ' . $font
->getName();
}