public function PHPExcel_Style_Borders::getStyleArray in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php \PHPExcel_Style_Borders::getStyleArray()
* Build style array from subcomponents * *
Parameters
array $array: * @return array
2 calls to PHPExcel_Style_Borders::getStyleArray()
- PHPExcel_Style_Borders::applyFromArray in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php - Apply styles from array
- PHPExcel_Style_Borders::setDiagonalDirection in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php - Set DiagonalDirection
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php, line 184
Class
- PHPExcel_Style_Borders
- PHPExcel_Style_Borders
Code
public function getStyleArray($array) {
return array(
'borders' => $array,
);
}