public static function PHPExcel_Shared_Date::getExcelCalendar in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php \PHPExcel_Shared_Date::getExcelCalendar()
* Return the Excel calendar (Windows 1900 or Mac 1904) * *
Return value
integer Excel base date (1900 or 1904)
4 calls to PHPExcel_Shared_Date::getExcelCalendar()
- PHPExcel_Calculation_DateTime::DATE in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ DateTime.php - * DATE * * The DATE function returns a value that represents a particular date. * * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date * format of your regional settings. PHPExcel does not change…
- PHPExcel_Calculation_DateTime::TIME in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ DateTime.php - * TIME * * The TIME function returns a value that represents a particular time. * * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the time * format of your regional settings. PHPExcel does not change…
- PHPExcel_Writer_Excel2007_Workbook::_writeWorkbookPr in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel2007/ Workbook.php - * Write WorkbookPr * *
- PHPExcel_Writer_Excel5_Workbook::_writeDatemode in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ Workbook.php - * Write DATEMODE record to indicate the date system in use (1904 or 1900).
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ Date.php, line 106
Class
- PHPExcel_Shared_Date
- PHPExcel_Shared_Date
Code
public static function getExcelCalendar() {
return self::$_excelBaseDate;
}