Yet more docblock fixes
This commit is contained in:
parent
c2bbafb4d9
commit
216ef82a14
|
@ -53,7 +53,7 @@ if (!defined('CALCULATION_REGEXP_CELLREF')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PHPExcel_Calculation (Singleton)
|
* PHPExcel_Calculation (Multiton)
|
||||||
*
|
*
|
||||||
* @category PHPExcel
|
* @category PHPExcel
|
||||||
* @package PHPExcel_Calculation
|
* @package PHPExcel_Calculation
|
||||||
|
@ -105,7 +105,7 @@ class PHPExcel_Calculation {
|
||||||
private $_workbook;
|
private $_workbook;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of instances of the calculation engine that we've instantiated
|
* List of instances of the calculation engine that we've instantiated for individual workbooks
|
||||||
*
|
*
|
||||||
* @access private
|
* @access private
|
||||||
* @var PHPExcel_Calculation[]
|
* @var PHPExcel_Calculation[]
|
||||||
|
@ -194,26 +194,80 @@ class PHPExcel_Calculation {
|
||||||
*/
|
*/
|
||||||
private $_cyclicReferenceStack;
|
private $_cyclicReferenceStack;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Current iteration counter for cyclic formulae
|
||||||
|
* If the value is 0 (or less) then cyclic formulae will throw an exception,
|
||||||
|
* otherwise they will iterate to the limit defined here before returning a result
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*
|
||||||
|
*/
|
||||||
private $_cyclicFormulaCount = 0;
|
private $_cyclicFormulaCount = 0;
|
||||||
|
|
||||||
private $_cyclicFormulaCell = '';
|
private $_cyclicFormulaCell = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Number of iterations for cyclic formulae
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*
|
||||||
|
*/
|
||||||
public $cyclicFormulaCount = 0;
|
public $cyclicFormulaCount = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Precision used for calculations
|
||||||
|
*
|
||||||
|
* @var integer
|
||||||
|
*
|
||||||
|
*/
|
||||||
private $_savedPrecision = 14;
|
private $_savedPrecision = 14;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The current locale setting
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*
|
||||||
|
*/
|
||||||
private static $_localeLanguage = 'en_us'; // US English (default locale)
|
private static $_localeLanguage = 'en_us'; // US English (default locale)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* List of available locale settings
|
||||||
|
* Note that this is read for the locale subdirectory only when requested
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*
|
||||||
|
*/
|
||||||
private static $_validLocaleLanguages = array( 'en' // English (default language)
|
private static $_validLocaleLanguages = array( 'en' // English (default language)
|
||||||
);
|
);
|
||||||
|
/**
|
||||||
|
* Locale-specific argument separator for function arguments
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*
|
||||||
|
*/
|
||||||
private static $_localeArgumentSeparator = ',';
|
private static $_localeArgumentSeparator = ',';
|
||||||
private static $_localeFunctions = array();
|
private static $_localeFunctions = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Locale-specific translations for Excel constants (True, False and Null)
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*
|
||||||
|
*/
|
||||||
public static $_localeBoolean = array( 'TRUE' => 'TRUE',
|
public static $_localeBoolean = array( 'TRUE' => 'TRUE',
|
||||||
'FALSE' => 'FALSE',
|
'FALSE' => 'FALSE',
|
||||||
'NULL' => 'NULL'
|
'NULL' => 'NULL'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Constant conversion from text name/value to actual (datatyped) value
|
/**
|
||||||
|
* Excel constant string translations to their PHP equivalents
|
||||||
|
* Constant conversion from text name/value to actual (datatyped) value
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*
|
||||||
|
*/
|
||||||
private static $_ExcelConstants = array('TRUE' => TRUE,
|
private static $_ExcelConstants = array('TRUE' => TRUE,
|
||||||
'FALSE' => FALSE,
|
'FALSE' => FALSE,
|
||||||
'NULL' => NULL
|
'NULL' => NULL
|
||||||
|
|
|
@ -378,6 +378,13 @@ class PHPExcel_Chart
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the offset position within the Top Left cell for the chart
|
||||||
|
*
|
||||||
|
* @param integer $xOffset
|
||||||
|
* @param integer $yOffset
|
||||||
|
* @return PHPExcel_Chart
|
||||||
|
*/
|
||||||
public function setTopLeftOffset($xOffset=null,$yOffset=null) {
|
public function setTopLeftOffset($xOffset=null,$yOffset=null) {
|
||||||
if (!is_null($xOffset))
|
if (!is_null($xOffset))
|
||||||
$this->setTopLeftXOffset($xOffset);
|
$this->setTopLeftXOffset($xOffset);
|
||||||
|
@ -387,6 +394,11 @@ class PHPExcel_Chart
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the offset position within the Top Left cell for the chart
|
||||||
|
*
|
||||||
|
* @return integer[]
|
||||||
|
*/
|
||||||
public function getTopLeftOffset() {
|
public function getTopLeftOffset() {
|
||||||
return array( 'X' => $this->_topLeftXOffset,
|
return array( 'X' => $this->_topLeftXOffset,
|
||||||
'Y' => $this->_topLeftYOffset
|
'Y' => $this->_topLeftYOffset
|
||||||
|
@ -458,6 +470,13 @@ class PHPExcel_Chart
|
||||||
return $this->_bottomRightCellRef;
|
return $this->_bottomRightCellRef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the offset position within the Bottom Right cell for the chart
|
||||||
|
*
|
||||||
|
* @param integer $xOffset
|
||||||
|
* @param integer $yOffset
|
||||||
|
* @return PHPExcel_Chart
|
||||||
|
*/
|
||||||
public function setBottomRightOffset($xOffset=null,$yOffset=null) {
|
public function setBottomRightOffset($xOffset=null,$yOffset=null) {
|
||||||
if (!is_null($xOffset))
|
if (!is_null($xOffset))
|
||||||
$this->setBottomRightXOffset($xOffset);
|
$this->setBottomRightXOffset($xOffset);
|
||||||
|
@ -467,6 +486,11 @@ class PHPExcel_Chart
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the offset position within the Bottom Right cell for the chart
|
||||||
|
*
|
||||||
|
* @return integer[]
|
||||||
|
*/
|
||||||
public function getBottomRightOffset() {
|
public function getBottomRightOffset() {
|
||||||
return array( 'X' => $this->_bottomRightXOffset,
|
return array( 'X' => $this->_bottomRightXOffset,
|
||||||
'Y' => $this->_bottomRightYOffset
|
'Y' => $this->_bottomRightYOffset
|
||||||
|
|
Loading…
Reference in New Issue