ILIAS
eassessment Revision 61809
|
Public Member Functions | |
__construct () | |
Create a new PHPExcel_Style_Conditional. | |
getConditionType () | |
Get Condition type. | |
setConditionType ($pValue=PHPExcel_Style_Conditional::CONDITION_NONE) | |
Set Condition type. | |
getOperatorType () | |
Get Operator type. | |
setOperatorType ($pValue=PHPExcel_Style_Conditional::OPERATOR_NONE) | |
Set Operator type. | |
getText () | |
Get text. | |
setText ($value=null) | |
Set text. | |
getCondition () | |
Get Condition. | |
setCondition ($pValue= '') | |
Set Condition. | |
getConditions () | |
Get Conditions. | |
setConditions ($pValue) | |
Set Conditions. | |
addCondition ($pValue= '') | |
Add Condition. | |
getStyle () | |
Get Style. | |
setStyle (PHPExcel_Style $pValue=null) | |
Set Style. | |
getHashCode () | |
Get hash code. | |
__clone () | |
Implement PHP __clone to create a deep clone, not just a shallow copy. |
Data Fields | |
const | CONDITION_NONE = 'none' |
const | CONDITION_CELLIS = 'cellIs' |
const | CONDITION_CONTAINSTEXT = 'containsText' |
const | CONDITION_EXPRESSION = 'expression' |
const | OPERATOR_NONE = '' |
const | OPERATOR_BEGINSWITH = 'beginsWith' |
const | OPERATOR_ENDSWITH = 'endsWith' |
const | OPERATOR_EQUAL = 'equal' |
const | OPERATOR_GREATERTHAN = 'greaterThan' |
const | OPERATOR_GREATERTHANOREQUAL = 'greaterThanOrEqual' |
const | OPERATOR_LESSTHAN = 'lessThan' |
const | OPERATOR_LESSTHANOREQUAL = 'lessThanOrEqual' |
const | OPERATOR_NOTEQUAL = 'notEqual' |
const | OPERATOR_CONTAINSTEXT = 'containsText' |
const | OPERATOR_NOTCONTAINS = 'notContains' |
const | OPERATOR_BETWEEN = 'between' |
Private Attributes | |
$_conditionType | |
$_operatorType | |
$_text | |
$_condition = array() | |
$_style |
Definition at line 36 of file Conditional.php.
PHPExcel_Style_Conditional::__construct | ( | ) |
Create a new PHPExcel_Style_Conditional.
Definition at line 96 of file Conditional.php.
References CONDITION_NONE, and OPERATOR_NONE.
PHPExcel_Style_Conditional::__clone | ( | ) |
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 267 of file Conditional.php.
PHPExcel_Style_Conditional::addCondition | ( | $pValue = '' | ) |
Add Condition.
string | $pValue | Condition |
Definition at line 223 of file Conditional.php.
PHPExcel_Style_Conditional::getCondition | ( | ) |
Get Condition.
Definition at line 172 of file Conditional.php.
PHPExcel_Style_Conditional::getConditions | ( | ) |
Get Conditions.
Definition at line 199 of file Conditional.php.
References $_condition.
PHPExcel_Style_Conditional::getConditionType | ( | ) |
Get Condition type.
Definition at line 111 of file Conditional.php.
References $_conditionType.
PHPExcel_Style_Conditional::getHashCode | ( | ) |
Get hash code.
Implements PHPExcel_IComparable.
Definition at line 254 of file Conditional.php.
PHPExcel_Style_Conditional::getOperatorType | ( | ) |
Get Operator type.
Definition at line 131 of file Conditional.php.
References $_operatorType.
PHPExcel_Style_Conditional::getStyle | ( | ) |
Get Style.
Definition at line 233 of file Conditional.php.
References $_style.
PHPExcel_Style_Conditional::getText | ( | ) |
PHPExcel_Style_Conditional::setCondition | ( | $pValue = '' | ) |
Set Condition.
string | $pValue | Condition |
Definition at line 187 of file Conditional.php.
References setConditions().
PHPExcel_Style_Conditional::setConditions | ( | $pValue | ) |
Set Conditions.
string[] | $pValue Condition |
Definition at line 209 of file Conditional.php.
Referenced by setCondition().
PHPExcel_Style_Conditional::setConditionType | ( | $pValue = PHPExcel_Style_Conditional::CONDITION_NONE | ) |
Set Condition type.
string | $pValue | PHPExcel_Style_Conditional condition type |
Definition at line 121 of file Conditional.php.
PHPExcel_Style_Conditional::setOperatorType | ( | $pValue = PHPExcel_Style_Conditional::OPERATOR_NONE | ) |
Set Operator type.
string | $pValue | PHPExcel_Style_Conditional operator type |
Definition at line 141 of file Conditional.php.
PHPExcel_Style_Conditional::setStyle | ( | PHPExcel_Style | $pValue = null | ) |
Set Style.
PHPExcel_Style | $pValue |
Exception |
Definition at line 244 of file Conditional.php.
PHPExcel_Style_Conditional::setText | ( | $value = null | ) |
Set text.
string | $value |
Definition at line 161 of file Conditional.php.
|
private |
Definition at line 84 of file Conditional.php.
Referenced by getConditions().
|
private |
Definition at line 63 of file Conditional.php.
Referenced by getConditionType().
|
private |
Definition at line 70 of file Conditional.php.
Referenced by getOperatorType().
|
private |
Definition at line 91 of file Conditional.php.
Referenced by getStyle().
|
private |
Definition at line 77 of file Conditional.php.
Referenced by getText().
const PHPExcel_Style_Conditional::CONDITION_CELLIS = 'cellIs' |
Definition at line 40 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting(), and PHPExcel_Reader_Excel2007\load().
const PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT = 'containsText' |
Definition at line 41 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting(), and PHPExcel_Reader_Excel2007\load().
const PHPExcel_Style_Conditional::CONDITION_EXPRESSION = 'expression' |
Definition at line 42 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting(), and PHPExcel_Reader_Excel2007\load().
const PHPExcel_Style_Conditional::CONDITION_NONE = 'none' |
Definition at line 39 of file Conditional.php.
Referenced by __construct(), PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting(), and PHPExcel_Reader_Excel2007\load().
const PHPExcel_Style_Conditional::OPERATOR_BEGINSWITH = 'beginsWith' |
Definition at line 46 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting().
const PHPExcel_Style_Conditional::OPERATOR_BETWEEN = 'between' |
Definition at line 56 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_CONTAINSTEXT = 'containsText' |
Definition at line 54 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting().
const PHPExcel_Style_Conditional::OPERATOR_ENDSWITH = 'endsWith' |
Definition at line 47 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting().
const PHPExcel_Style_Conditional::OPERATOR_EQUAL = 'equal' |
Definition at line 48 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_GREATERTHAN = 'greaterThan' |
Definition at line 49 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_GREATERTHANOREQUAL = 'greaterThanOrEqual' |
Definition at line 50 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_LESSTHAN = 'lessThan' |
Definition at line 51 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_LESSTHANOREQUAL = 'lessThanOrEqual' |
Definition at line 52 of file Conditional.php.
const PHPExcel_Style_Conditional::OPERATOR_NONE = '' |
Definition at line 45 of file Conditional.php.
Referenced by __construct(), and PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting().
const PHPExcel_Style_Conditional::OPERATOR_NOTCONTAINS = 'notContains' |
Definition at line 55 of file Conditional.php.
Referenced by PHPExcel_Writer_Excel2007_Worksheet\_writeConditionalFormatting().
const PHPExcel_Style_Conditional::OPERATOR_NOTEQUAL = 'notEqual' |
Definition at line 53 of file Conditional.php.