/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Style
NameSizeModeActions
Alignment.php132170644editdlrm
Border.php90180644editdlrm
Borders.php125600644editdlrm
Color.php163140644editdlrm
Conditional.php69230644editdlrm
Fill.php101700644editdlrm
Font.php149990644editdlrm
NumberFormat.php284880644editdlrm
Protection.php59300644editdlrm
Supervisor.php34380644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Style/Supervisor.php (3438B)
isSupervisor = $isSupervisor; } /** * Bind parent. Only used for supervisor * * @param PHPExcel $parent * @return PHPExcel_Style_Supervisor */ public function bindParent($parent, $parentPropertyName = null) { $this->parent = $parent; return $this; } /** * Is this a supervisor or a cell style component? * * @return boolean */ public function getIsSupervisor() { return $this->isSupervisor; } /** * Get the currently active sheet. Only used for supervisor * * @return PHPExcel_Worksheet */ public function getActiveSheet() { return $this->parent->getActiveSheet(); } /** * Get the currently active cell coordinate in currently active sheet. * Only used for supervisor * * @return string E.g. 'A1' */ public function getSelectedCells() { return $this->getActiveSheet()->getSelectedCells(); } /** * Get the currently active cell coordinate in currently active sheet. * Only used for supervisor * * @return string E.g. 'A1' */ public function getActiveCell() { return $this->getActiveSheet()->getActiveCell(); } /** * 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)) && ($key != 'parent')) { $this->$key = clone $value; } else { $this->$key = $value; } } } }