You are here

public function PHPExcel::discardMacros in Loft Data Grids 7.2

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

* Remove all macros, certificate from spreadsheet * *

Parameters

none: * @return void

File

vendor/phpoffice/phpexcel/Classes/PHPExcel.php, line 220

Class

PHPExcel
PHPExcel

Code

public function discardMacros() {
  $this->_hasMacros = false;
  $this->_macrosCode = NULL;
  $this->_macrosCertificate = NULL;
}