public function PHPExcel_Style_Protection::getLocked 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::getLocked()
Get locked
Return value
string
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Protection.php, line 140
Class
- PHPExcel_Style_Protection
- PHPExcel_Style_Protection
Code
public function getLocked() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getLocked();
}
return $this->_locked;
}