You are here

public function PHPExcel_Cell_Hyperlink::getHashCode in Loft Data Grids 7.2

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

Get hash code

Return value

string Hash code

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php, line 119

Class

PHPExcel_Cell_Hyperlink
PHPExcel_Cell_Hyperlink

Code

public function getHashCode() {
  return md5($this->_url . $this->_tooltip . __CLASS__);
}