public function PHPExcel_Worksheet_HeaderFooterDrawing::getHashCode in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php \PHPExcel_Worksheet_HeaderFooterDrawing::getHashCode()
* Get hash code * *
Return value
string Hash code
Overrides PHPExcel_Worksheet_Drawing::getHashCode
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet/ HeaderFooterDrawing.php, line 325
Class
- PHPExcel_Worksheet_HeaderFooterDrawing
- PHPExcel_Worksheet_HeaderFooterDrawing
Code
public function getHashCode() {
return md5($this->_path . $this->_name . $this->_offsetX . $this->_offsetY . $this->_width . $this->_height . __CLASS__);
}