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