You are here

public function PHPExcel_DocumentProperties::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php \PHPExcel_DocumentProperties::__construct()

Create a new PHPExcel_DocumentProperties

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php, line 134

Class

PHPExcel_DocumentProperties
PHPExcel_DocumentProperties

Code

public function __construct() {

  // Initialise values
  $this->_lastModifiedBy = $this->_creator;
  $this->_created = time();
  $this->_modified = time();
}