/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Calculation
NameSizeModeActions
Token/-0755rm
Database.php333310644editdlrm
DateTime.php690690644editdlrm
Engineering.php1107320644editdlrm
Exception.php15610644editdlrm
ExceptionHandler.php14670644editdlrm
Financial.php1089450644editdlrm
FormulaParser.php269210644editdlrm
FormulaToken.php56570644editdlrm
Function.php41370644editdlrm
functionlist.txt25110644editdlrm
Functions.php206590644editdlrm
Logical.php114860644editdlrm
LookupRef.php371200644editdlrm
MathTrig.php482500644editdlrm
Statistical.php1325220644editdlrm
TextData.php222590644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Calculation/Function.php (4137B)
category = $pCategory; $this->excelName = $pExcelName; $this->phpExcelName = $pPHPExcelName; } else { throw new PHPExcel_Calculation_Exception("Invalid parameters passed."); } } /** * Get Category (represented by CATEGORY_*) * * @return string */ public function getCategory() { return $this->category; } /** * Set Category (represented by CATEGORY_*) * * @param string $value * @throws PHPExcel_Calculation_Exception */ public function setCategory($value = null) { if (!is_null($value)) { $this->category = $value; } else { throw new PHPExcel_Calculation_Exception("Invalid parameter passed."); } } /** * Get Excel name * * @return string */ public function getExcelName() { return $this->excelName; } /** * Set Excel name * * @param string $value */ public function setExcelName($value) { $this->excelName = $value; } /** * Get PHPExcel name * * @return string */ public function getPHPExcelName() { return $this->phpExcelName; } /** * Set PHPExcel name * * @param string $value */ public function setPHPExcelName($value) { $this->phpExcelName = $value; } }