/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/RichText
NameSizeModeActions
ITextElement.php15860644editdlrm
Run.php26320644editdlrm
TextElement.php25580644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/RichText/Run.php (2632B)
setText($pText); $this->font = new PHPExcel_Style_Font(); } /** * Get font * * @return PHPExcel_Style_Font */ public function getFont() { return $this->font; } /** * Set font * * @param PHPExcel_Style_Font $pFont Font * @throws PHPExcel_Exception * @return PHPExcel_RichText_ITextElement */ public function setFont(PHPExcel_Style_Font $pFont = null) { $this->font = $pFont; return $this; } /** * Get hash code * * @return string Hash code */ public function getHashCode() { return md5( $this->getText() . $this->font->getHashCode() . __CLASS__ ); } /** * Implement PHP __clone to create a deep clone, not just a shallow copy. */ public function __clone() { $vars = get_object_vars($this); foreach ($vars as $key => $value) { if (is_object($value)) { $this->$key = clone $value; } else { $this->$key = $value; } } } }