You are here

public function PHPExcel_Shared_OLE_PPS_Root::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php \PHPExcel_Shared_OLE_PPS_Root::__construct()

*

Parameters

integer $time_1st A timestamp: * @param integer $time_2nd A timestamp

Overrides PHPExcel_Shared_OLE_PPS::__construct

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php, line 43

Class

PHPExcel_Shared_OLE_PPS_Root
Class for creating Root PPS's for OLE containers

Code

public function __construct($time_1st, $time_2nd, $raChild) {
  $this->_tempDir = PHPExcel_Shared_File::sys_get_temp_dir();
  parent::__construct(null, PHPExcel_Shared_OLE::Asc2Ucs('Root Entry'), PHPExcel_Shared_OLE::OLE_PPS_TYPE_ROOT, null, null, null, $time_1st, $time_2nd, null, $raChild);
}