/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Worksheet
NameSizeModeActions
AutoFilter/-0755rm
Drawing/-0755rm
AutoFilter.php392780644editdlrm
BaseDrawing.php112810644editdlrm
CellIterator.php23230644editdlrm
Column.php24470644editdlrm
ColumnCellIterator.php66040644editdlrm
ColumnDimension.php30240644editdlrm
ColumnIterator.php57280644editdlrm
Dimension.php39450644editdlrm
Drawing.php38200644editdlrm
HeaderFooter.php129810644editdlrm
HeaderFooterDrawing.php79390644editdlrm
MemoryDrawing.php50140644editdlrm
PageMargins.php44560644editdlrm
PageSetup.php291040644editdlrm
Protection.php113890644editdlrm
Row.php24190644editdlrm
RowCellIterator.php72090644editdlrm
RowDimension.php30150644editdlrm
RowIterator.php49620644editdlrm
SheetView.php49260644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Worksheet/MemoryDrawing.php (5014B)
imageResource = null; $this->renderingFunction = self::RENDERING_DEFAULT; $this->mimeType = self::MIMETYPE_DEFAULT; $this->uniqueName = md5(rand(0, 9999). time() . rand(0, 9999)); // Initialize parent parent::__construct(); } /** * Get image resource * * @return resource */ public function getImageResource() { return $this->imageResource; } /** * Set image resource * * @param $value resource * @return PHPExcel_Worksheet_MemoryDrawing */ public function setImageResource($value = null) { $this->imageResource = $value; if (!is_null($this->imageResource)) { // Get width/height $this->width = imagesx($this->imageResource); $this->height = imagesy($this->imageResource); } return $this; } /** * Get rendering function * * @return string */ public function getRenderingFunction() { return $this->renderingFunction; } /** * Set rendering function * * @param string $value * @return PHPExcel_Worksheet_MemoryDrawing */ public function setRenderingFunction($value = PHPExcel_Worksheet_MemoryDrawing::RENDERING_DEFAULT) { $this->renderingFunction = $value; return $this; } /** * Get mime type * * @return string */ public function getMimeType() { return $this->mimeType; } /** * Set mime type * * @param string $value * @return PHPExcel_Worksheet_MemoryDrawing */ public function setMimeType($value = PHPExcel_Worksheet_MemoryDrawing::MIMETYPE_DEFAULT) { $this->mimeType = $value; return $this; } /** * Get indexed filename (using image index) * * @return string */ public function getIndexedFilename() { $extension = strtolower($this->getMimeType()); $extension = explode('/', $extension); $extension = $extension[1]; return $this->uniqueName . $this->getImageIndex() . '.' . $extension; } /** * Get hash code * * @return string Hash code */ public function getHashCode() { return md5( $this->renderingFunction . $this->mimeType . $this->uniqueName . parent::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; } } } }