public function PHPExcel_Style_Protection::getStyleArray in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php \PHPExcel_Style_Protection::getStyleArray()
* Build style array from subcomponents * *
Parameters
array $array: * @return array
3 calls to PHPExcel_Style_Protection::getStyleArray()
- PHPExcel_Style_Protection::applyFromArray in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Protection.php - Apply styles from array
- PHPExcel_Style_Protection::setHidden in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Protection.php - Set hidden
- PHPExcel_Style_Protection::setLocked in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Protection.php - Set locked
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Protection.php, line 96
Class
- PHPExcel_Style_Protection
- PHPExcel_Style_Protection
Code
public function getStyleArray($array) {
return array(
'protection' => $array,
);
}