123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545 |
- <?php
- class PHPExcel_Worksheet_Protection
- {
-
- private $_sheet = false;
-
- private $_objects = false;
-
- private $_scenarios = false;
-
- private $_formatCells = false;
-
- private $_formatColumns = false;
-
- private $_formatRows = false;
-
- private $_insertColumns = false;
-
- private $_insertRows = false;
-
- private $_insertHyperlinks = false;
-
- private $_deleteColumns = false;
-
- private $_deleteRows = false;
-
- private $_selectLockedCells = false;
-
- private $_sort = false;
-
- private $_autoFilter = false;
-
- private $_pivotTables = false;
-
- private $_selectUnlockedCells = false;
-
- private $_password = '';
-
- public function __construct()
- {
- }
-
- function isProtectionEnabled() {
- return $this->_sheet ||
- $this->_objects ||
- $this->_scenarios ||
- $this->_formatCells ||
- $this->_formatColumns ||
- $this->_formatRows ||
- $this->_insertColumns ||
- $this->_insertRows ||
- $this->_insertHyperlinks ||
- $this->_deleteColumns ||
- $this->_deleteRows ||
- $this->_selectLockedCells ||
- $this->_sort ||
- $this->_autoFilter ||
- $this->_pivotTables ||
- $this->_selectUnlockedCells;
- }
-
- function getSheet() {
- return $this->_sheet;
- }
-
- function setSheet($pValue = false) {
- $this->_sheet = $pValue;
- return $this;
- }
-
- function getObjects() {
- return $this->_objects;
- }
-
- function setObjects($pValue = false) {
- $this->_objects = $pValue;
- return $this;
- }
-
- function getScenarios() {
- return $this->_scenarios;
- }
-
- function setScenarios($pValue = false) {
- $this->_scenarios = $pValue;
- return $this;
- }
-
- function getFormatCells() {
- return $this->_formatCells;
- }
-
- function setFormatCells($pValue = false) {
- $this->_formatCells = $pValue;
- return $this;
- }
-
- function getFormatColumns() {
- return $this->_formatColumns;
- }
-
- function setFormatColumns($pValue = false) {
- $this->_formatColumns = $pValue;
- return $this;
- }
-
- function getFormatRows() {
- return $this->_formatRows;
- }
-
- function setFormatRows($pValue = false) {
- $this->_formatRows = $pValue;
- return $this;
- }
-
- function getInsertColumns() {
- return $this->_insertColumns;
- }
-
- function setInsertColumns($pValue = false) {
- $this->_insertColumns = $pValue;
- return $this;
- }
-
- function getInsertRows() {
- return $this->_insertRows;
- }
-
- function setInsertRows($pValue = false) {
- $this->_insertRows = $pValue;
- return $this;
- }
-
- function getInsertHyperlinks() {
- return $this->_insertHyperlinks;
- }
-
- function setInsertHyperlinks($pValue = false) {
- $this->_insertHyperlinks = $pValue;
- return $this;
- }
-
- function getDeleteColumns() {
- return $this->_deleteColumns;
- }
-
- function setDeleteColumns($pValue = false) {
- $this->_deleteColumns = $pValue;
- return $this;
- }
-
- function getDeleteRows() {
- return $this->_deleteRows;
- }
-
- function setDeleteRows($pValue = false) {
- $this->_deleteRows = $pValue;
- return $this;
- }
-
- function getSelectLockedCells() {
- return $this->_selectLockedCells;
- }
-
- function setSelectLockedCells($pValue = false) {
- $this->_selectLockedCells = $pValue;
- return $this;
- }
-
- function getSort() {
- return $this->_sort;
- }
-
- function setSort($pValue = false) {
- $this->_sort = $pValue;
- return $this;
- }
-
- function getAutoFilter() {
- return $this->_autoFilter;
- }
-
- function setAutoFilter($pValue = false) {
- $this->_autoFilter = $pValue;
- return $this;
- }
-
- function getPivotTables() {
- return $this->_pivotTables;
- }
-
- function setPivotTables($pValue = false) {
- $this->_pivotTables = $pValue;
- return $this;
- }
-
- function getSelectUnlockedCells() {
- return $this->_selectUnlockedCells;
- }
-
- function setSelectUnlockedCells($pValue = false) {
- $this->_selectUnlockedCells = $pValue;
- return $this;
- }
-
- function getPassword() {
- return $this->_password;
- }
-
- function setPassword($pValue = '', $pAlreadyHashed = false) {
- if (!$pAlreadyHashed) {
- $pValue = PHPExcel_Shared_PasswordHasher::hashPassword($pValue);
- }
- $this->_password = $pValue;
- return $this;
- }
-
- public function __clone() {
- $vars = get_object_vars($this);
- foreach ($vars as $key => $value) {
- if (is_object($value)) {
- $this->$key = clone $value;
- } else {
- $this->$key = $value;
- }
- }
- }
- }
|