mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-02-06 09:49:24 +03:00
Document blocks
This commit is contained in:
parent
c660492446
commit
e9a09c8903
@ -1879,10 +1879,10 @@ class PHPExcel_Worksheet implements PHPExcel_IComparable
|
|||||||
/**
|
/**
|
||||||
* Set Autofilter Range by using numeric cell coordinates
|
* Set Autofilter Range by using numeric cell coordinates
|
||||||
*
|
*
|
||||||
* @param int $pColumn1 Numeric column coordinate of the first cell
|
* @param integer $pColumn1 Numeric column coordinate of the first cell
|
||||||
* @param int $pRow1 Numeric row coordinate of the first cell
|
* @param integer $pRow1 Numeric row coordinate of the first cell
|
||||||
* @param int $pColumn2 Numeric column coordinate of the second cell
|
* @param integer $pColumn2 Numeric column coordinate of the second cell
|
||||||
* @param int $pRow2 Numeric row coordinate of the second cell
|
* @param integer $pRow2 Numeric row coordinate of the second cell
|
||||||
* @throws PHPExcel_Exception
|
* @throws PHPExcel_Exception
|
||||||
* @return PHPExcel_Worksheet
|
* @return PHPExcel_Worksheet
|
||||||
*/
|
*/
|
||||||
|
@ -61,6 +61,9 @@ class PHPExcel_Worksheet_AutoFilter
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new PHPExcel_Worksheet_AutoFilter
|
* Create a new PHPExcel_Worksheet_AutoFilter
|
||||||
|
*
|
||||||
|
* @param string $pRange Cell range (i.e. A1:E10)
|
||||||
|
* @param PHPExcel_Worksheet $pSheet
|
||||||
*/
|
*/
|
||||||
public function __construct($pRange = '', PHPExcel_Worksheet $pSheet = NULL)
|
public function __construct($pRange = '', PHPExcel_Worksheet $pSheet = NULL)
|
||||||
{
|
{
|
||||||
@ -80,7 +83,7 @@ class PHPExcel_Worksheet_AutoFilter
|
|||||||
/**
|
/**
|
||||||
* Set AutoFilter Parent Worksheet
|
* Set AutoFilter Parent Worksheet
|
||||||
*
|
*
|
||||||
* @param PHPExcel_Worksheet
|
* @param PHPExcel_Worksheet $pSheet
|
||||||
* @return PHPExcel_Worksheet_AutoFilter
|
* @return PHPExcel_Worksheet_AutoFilter
|
||||||
*/
|
*/
|
||||||
public function setParent(PHPExcel_Worksheet $pSheet = NULL) {
|
public function setParent(PHPExcel_Worksheet $pSheet = NULL) {
|
||||||
@ -347,7 +350,7 @@ class PHPExcel_Worksheet_AutoFilter
|
|||||||
* Test if cell value is within a set of values defined by a ruleset
|
* Test if cell value is within a set of values defined by a ruleset
|
||||||
*
|
*
|
||||||
* @param mixed $cellValue
|
* @param mixed $cellValue
|
||||||
* @param mixed[] $dataSet
|
* @param mixed[] $ruleSet
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
private static function _filterTestInCustomDataSet($cellValue, $ruleSet)
|
private static function _filterTestInCustomDataSet($cellValue, $ruleSet)
|
||||||
@ -424,7 +427,7 @@ class PHPExcel_Worksheet_AutoFilter
|
|||||||
* Test if cell date value is matches a set of values defined by a set of months
|
* Test if cell date value is matches a set of values defined by a set of months
|
||||||
*
|
*
|
||||||
* @param mixed $cellValue
|
* @param mixed $cellValue
|
||||||
* @param mixed[] $dataSet
|
* @param mixed[] $monthSet
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
private static function _filterTestInPeriodDateSet($cellValue, $monthSet)
|
private static function _filterTestInPeriodDateSet($cellValue, $monthSet)
|
||||||
@ -457,7 +460,7 @@ class PHPExcel_Worksheet_AutoFilter
|
|||||||
* Convert a dynamic rule daterange to a custom filter range expression for ease of calculation
|
* Convert a dynamic rule daterange to a custom filter range expression for ease of calculation
|
||||||
*
|
*
|
||||||
* @param string $dynamicRuleType
|
* @param string $dynamicRuleType
|
||||||
* @param PHPExcel_Worksheet_AutoFilter_Column $filterColumn
|
* @param PHPExcel_Worksheet_AutoFilter_Column &$filterColumn
|
||||||
* @return mixed[]
|
* @return mixed[]
|
||||||
*/
|
*/
|
||||||
private function _dynamicFilterDateRange($dynamicRuleType, &$filterColumn)
|
private function _dynamicFilterDateRange($dynamicRuleType, &$filterColumn)
|
||||||
|
@ -44,6 +44,11 @@ class PHPExcel_Worksheet_AutoFilter_Column
|
|||||||
// e.g. filtered by date = TODAY
|
// e.g. filtered by date = TODAY
|
||||||
const AUTOFILTER_FILTERTYPE_TOPTENFILTER = 'top10';
|
const AUTOFILTER_FILTERTYPE_TOPTENFILTER = 'top10';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Types of autofilter rules
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
private static $_filterTypes = array(
|
private static $_filterTypes = array(
|
||||||
// Currently we're not handling
|
// Currently we're not handling
|
||||||
// colorFilter
|
// colorFilter
|
||||||
@ -59,6 +64,11 @@ class PHPExcel_Worksheet_AutoFilter_Column
|
|||||||
const AUTOFILTER_COLUMN_JOIN_AND = 'and';
|
const AUTOFILTER_COLUMN_JOIN_AND = 'and';
|
||||||
const AUTOFILTER_COLUMN_JOIN_OR = 'or';
|
const AUTOFILTER_COLUMN_JOIN_OR = 'or';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Join options for autofilter rules
|
||||||
|
*
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
private static $_ruleJoins = array(
|
private static $_ruleJoins = array(
|
||||||
self::AUTOFILTER_COLUMN_JOIN_AND,
|
self::AUTOFILTER_COLUMN_JOIN_AND,
|
||||||
self::AUTOFILTER_COLUMN_JOIN_OR,
|
self::AUTOFILTER_COLUMN_JOIN_OR,
|
||||||
@ -114,6 +124,9 @@ class PHPExcel_Worksheet_AutoFilter_Column
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new PHPExcel_Worksheet_AutoFilter_Column
|
* Create a new PHPExcel_Worksheet_AutoFilter_Column
|
||||||
|
*
|
||||||
|
* @param string $pColumn Column (e.g. A)
|
||||||
|
* @param PHPExcel_Worksheet_AutoFilter $pParent Autofilter for this column
|
||||||
*/
|
*/
|
||||||
public function __construct($pColumn, PHPExcel_Worksheet_AutoFilter $pParent = NULL)
|
public function __construct($pColumn, PHPExcel_Worksheet_AutoFilter $pParent = NULL)
|
||||||
{
|
{
|
||||||
|
@ -269,6 +269,8 @@ class PHPExcel_Worksheet_AutoFilter_Column_Rule
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new PHPExcel_Worksheet_AutoFilter_Column_Rule
|
* Create a new PHPExcel_Worksheet_AutoFilter_Column_Rule
|
||||||
|
*
|
||||||
|
* @param PHPExcel_Worksheet_AutoFilter_Column $pParent
|
||||||
*/
|
*/
|
||||||
public function __construct(PHPExcel_Worksheet_AutoFilter_Column $pParent = NULL)
|
public function __construct(PHPExcel_Worksheet_AutoFilter_Column $pParent = NULL)
|
||||||
{
|
{
|
||||||
|
@ -838,8 +838,8 @@ class PHPExcel_Writer_Excel5_Workbook extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
*
|
*
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param string $sheetIndex 1-based sheet index the defined name applies to. 0 = global
|
* @param string $sheetIndex 1-based sheet index the defined name applies to. 0 = global
|
||||||
* @param int[][] $range rangeboundaries
|
* @param integer[][] $rangeBounds range boundaries
|
||||||
* @param bool $isHidden
|
* @param boolean $isHidden
|
||||||
* @return string Complete binary record data
|
* @return string Complete binary record data
|
||||||
* */
|
* */
|
||||||
private function _writeShortNameBiff8($name, $sheetIndex = 0, $rangeBounds, $isHidden = false){
|
private function _writeShortNameBiff8($name, $sheetIndex = 0, $rangeBounds, $isHidden = false){
|
||||||
|
@ -38,7 +38,7 @@ interface PHPExcel_Writer_IWriter
|
|||||||
/**
|
/**
|
||||||
* Save PHPExcel to file
|
* Save PHPExcel to file
|
||||||
*
|
*
|
||||||
* @param string $pFilename
|
* @param string $pFilename NAme of the file to save
|
||||||
* @throws PHPExcel_Writer_Exception
|
* @throws PHPExcel_Writer_Exception
|
||||||
*/
|
*/
|
||||||
public function save($pFilename = NULL);
|
public function save($pFilename = NULL);
|
||||||
|
@ -261,7 +261,7 @@ abstract class PHPExcel_Writer_PDF_Core extends PHPExcel_Writer_HTML
|
|||||||
/**
|
/**
|
||||||
* Set Paper Size
|
* Set Paper Size
|
||||||
*
|
*
|
||||||
* @param int $pValue
|
* @param string $pValue Paper size
|
||||||
* @return PHPExcel_Writer_PDF
|
* @return PHPExcel_Writer_PDF
|
||||||
*/
|
*/
|
||||||
public function setPaperSize($pValue = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER)
|
public function setPaperSize($pValue = PHPExcel_Worksheet_PageSetup::PAPERSIZE_LETTER)
|
||||||
@ -283,7 +283,7 @@ abstract class PHPExcel_Writer_PDF_Core extends PHPExcel_Writer_HTML
|
|||||||
/**
|
/**
|
||||||
* Set Orientation
|
* Set Orientation
|
||||||
*
|
*
|
||||||
* @param string $pValue
|
* @param string $pValue Page orientation
|
||||||
* @return PHPExcel_Writer_PDF
|
* @return PHPExcel_Writer_PDF
|
||||||
*/
|
*/
|
||||||
public function setOrientation($pValue = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT)
|
public function setOrientation($pValue = PHPExcel_Worksheet_PageSetup::ORIENTATION_DEFAULT)
|
||||||
@ -322,7 +322,7 @@ abstract class PHPExcel_Writer_PDF_Core extends PHPExcel_Writer_HTML
|
|||||||
/**
|
/**
|
||||||
* Save PHPExcel to PDF file, pre-save
|
* Save PHPExcel to PDF file, pre-save
|
||||||
*
|
*
|
||||||
* @param string $pFileName Name of the file to save as
|
* @param string $pFilename Name of the file to save as
|
||||||
* @throws PHPExcel_Writer_Exception
|
* @throws PHPExcel_Writer_Exception
|
||||||
*/
|
*/
|
||||||
protected function prepareForSave($pFilename = NULL)
|
protected function prepareForSave($pFilename = NULL)
|
||||||
|
@ -56,7 +56,7 @@ class PHPExcel_Writer_PDF_DomPDF extends PHPExcel_Writer_PDF_Core implements PHP
|
|||||||
/**
|
/**
|
||||||
* Save PHPExcel to file
|
* Save PHPExcel to file
|
||||||
*
|
*
|
||||||
* @param string $pFileName Name of the file to save as
|
* @param string $pFilename Name of the file to save as
|
||||||
* @throws PHPExcel_Writer_Exception
|
* @throws PHPExcel_Writer_Exception
|
||||||
*/
|
*/
|
||||||
public function save($pFilename = NULL)
|
public function save($pFilename = NULL)
|
||||||
|
@ -56,7 +56,7 @@ class PHPExcel_Writer_PDF_mPDF extends PHPExcel_Writer_PDF_Core implements PHPEx
|
|||||||
/**
|
/**
|
||||||
* Save PHPExcel to file
|
* Save PHPExcel to file
|
||||||
*
|
*
|
||||||
* @param string $pFileName Name of the file to save as
|
* @param string $pFilename Name of the file to save as
|
||||||
* @throws PHPExcel_Writer_Exception
|
* @throws PHPExcel_Writer_Exception
|
||||||
*/
|
*/
|
||||||
public function save($pFilename = NULL)
|
public function save($pFilename = NULL)
|
||||||
|
@ -57,7 +57,7 @@ class PHPExcel_Writer_PDF_tcPDF extends PHPExcel_Writer_PDF_Core implements PHPE
|
|||||||
/**
|
/**
|
||||||
* Save PHPExcel to file
|
* Save PHPExcel to file
|
||||||
*
|
*
|
||||||
* @param string $pFileName Name of the file to save as
|
* @param string $pFilename Name of the file to save as
|
||||||
* @throws PHPExcel_Writer_Exception
|
* @throws PHPExcel_Writer_Exception
|
||||||
*/
|
*/
|
||||||
public function save($pFilename = NULL)
|
public function save($pFilename = NULL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user