function PHPExcel_DocumentSecurity::isSecurityEnabled in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php \PHPExcel_DocumentSecurity::isSecurityEnabled()
Is some sort of dcument security enabled?
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ DocumentSecurity.php, line 91
Class
- PHPExcel_DocumentSecurity
- PHPExcel_DocumentSecurity
Code
function isSecurityEnabled() {
return $this->_lockRevision || $this->_lockStructure || $this->_lockWindows;
}