protected function PHPExcel_Properties::getArrayElementsValue in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php \PHPExcel_Properties::getArrayElementsValue()
5 calls to PHPExcel_Properties::getArrayElementsValue()
- PHPExcel_Chart_Axis::getGlowProperty in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Axis.php - Get Glow Property
- PHPExcel_Chart_Axis::getLineStyleProperty in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Axis.php - Get Line Style Property
- PHPExcel_Chart_Axis::getShadowProperty in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Axis.php - Get Glow Property
- PHPExcel_Chart_GridLines::getLineStyleProperty in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ GridLines.php - Get Line Style Property
- PHPExcel_Chart_GridLines::getShadowProperty in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ GridLines.php - Get Shadow Property
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Properties.php, line 344
Class
- PHPExcel_Properties
- Created by PhpStorm. User: nhw2h8s Date: 7/2/14 Time: 5:45 PM
Code
protected function getArrayElementsValue($properties, $elements) {
$reference =& $properties;
if (!is_array($elements)) {
return $reference[$elements];
}
else {
foreach ($elements as $keys) {
$reference =& $reference[$keys];
}
return $reference;
}
return $this;
}