You are here

public function PHPExcel_Style_Protection::getLocked in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.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;
}