You are here

public function PHPExcel_Worksheet_MemoryDrawing::__construct in Loft Data Grids 7.2

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

Create a new PHPExcel_Worksheet_MemoryDrawing

Overrides PHPExcel_Worksheet_BaseDrawing::__construct

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php, line 81

Class

PHPExcel_Worksheet_MemoryDrawing
PHPExcel_Worksheet_MemoryDrawing

Code

public function __construct() {

  // Initialise values
  $this->_imageResource = null;
  $this->_renderingFunction = self::RENDERING_DEFAULT;
  $this->_mimeType = self::MIMETYPE_DEFAULT;
  $this->_uniqueName = md5(rand(0, 9999) . time() . rand(0, 9999));

  // Initialize parent
  parent::__construct();
}