public function PHPExcel_Worksheet::getHashCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::getHashCode()
Get hash code
Return value
string Hash code
Overrides PHPExcel_IComparable::getHashCode
1 call to PHPExcel_Worksheet::getHashCode()
- PHPExcel_Worksheet::cellExists in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php - Does the cell at a specific coordinate exist?
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php, line 2632
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function getHashCode() {
if ($this->_dirty) {
$this->_hash = md5($this->_title . $this->_autoFilter . ($this->_protection
->isProtectionEnabled() ? 't' : 'f') . __CLASS__);
$this->_dirty = false;
}
return $this->_hash;
}