Definition at line 36 of file Theme.php.
◆ __construct()
PHPExcel_Reader_Excel2007_Theme::__construct |
( |
|
$themeName, |
|
|
|
$colourSchemeName, |
|
|
|
$colourMap |
|
) |
| |
Create a new PHPExcel_Theme.
Definition at line 72 of file Theme.php.
75 $this->_themeName = $themeName;
76 $this->_colourSchemeName = $colourSchemeName;
77 $this->_colourMap = $colourMap;
◆ __clone()
PHPExcel_Reader_Excel2007_Theme::__clone |
( |
| ) |
|
Implement PHP __clone to create a deep clone, not just a shallow copy.
Definition at line 114 of file Theme.php.
References $key.
115 $vars = get_object_vars($this);
116 foreach ($vars as
$key => $value) {
117 if ((is_object($value)) && (
$key !=
'_parent')) {
118 $this->
$key = clone $value;
120 $this->
$key = $value;
◆ getColourByIndex()
PHPExcel_Reader_Excel2007_Theme::getColourByIndex |
( |
|
$index = 0 | ) |
|
Get colour Map Value by Position.
- Returns
- string
Definition at line 104 of file Theme.php.
References $index.
105 if (isset($this->_colourMap[
$index])) {
106 return $this->_colourMap[
$index];
◆ getColourSchemeName()
PHPExcel_Reader_Excel2007_Theme::getColourSchemeName |
( |
| ) |
|
◆ getThemeName()
PHPExcel_Reader_Excel2007_Theme::getThemeName |
( |
| ) |
|
◆ $_colourMap
PHPExcel_Reader_Excel2007_Theme::$_colourMap |
|
private |
◆ $_colourMapValues
PHPExcel_Reader_Excel2007_Theme::$_colourMapValues |
|
private |
◆ $_colourSchemeName
PHPExcel_Reader_Excel2007_Theme::$_colourSchemeName |
|
private |
◆ $_themeName
PHPExcel_Reader_Excel2007_Theme::$_themeName |
|
private |
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php