芝麻web文件管理V1.00
编辑当前文件:/home/a/s/m/asmplong/www/asm/Classes/PHPExcel/Cell/Hyperlink.php
_url = $pUrl; $this->_tooltip = $pTooltip; // Set cell $this->_parent = $pCell; } /** * Get URL * * @return string */ public function getUrl() { return $this->_url; } /** * Set URL * * @param string $value * @return PHPExcel_Cell_Hyperlink */ public function setUrl($value = '') { $this->_url = $value; return $this; } /** * Get tooltip * * @return string */ public function getTooltip() { return $this->_tooltip; } /** * Set tooltip * * @param string $value * @return PHPExcel_Cell_Hyperlink */ public function setTooltip($value = '') { $this->_tooltip = $value; return $this; } /** * Is this hyperlink internal? (to another sheet) * * @return boolean */ public function isInternal() { return strpos($this->_url, 'sheet://') !== false; } /** * Get parent * * @return PHPExcel_Cell */ public function getParent() { return $this->_parent; } /** * Set Parent * * @param PHPExcel_Cell $value * @return PHPExcel_Cell_Hyperlink */ public function setParent($value = null) { $this->_parent = $value; return $this; } /** * Get hash code * * @return string Hash code */ public function getHashCode() { return md5( $this->_url . $this->_tooltip . $this->_parent->getCoordinate() . __CLASS__ ); } }