chengkun
2025-09-12 b21e53f16f228d3192eb54178f081395878b2406
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
 
namespace PhpOffice\PhpSpreadsheet\Worksheet;
 
class ProtectedRange
{
    private string $name = '';
 
    private string $password = '';
 
    private string $sqref;
 
    private string $securityDescriptor = '';
 
    /**
     * No setters aside from constructor.
     */
    public function __construct(string $sqref, string $password = '', string $name = '', string $securityDescriptor = '')
    {
        $this->sqref = $sqref;
        $this->name = $name;
        $this->password = $password;
        $this->securityDescriptor = $securityDescriptor;
    }
 
    public function getSqref(): string
    {
        return $this->sqref;
    }
 
    public function getName(): string
    {
        return $this->name ?: ('p' . md5($this->sqref));
    }
 
    public function getPassword(): string
    {
        return $this->password;
    }
 
    public function getSecurityDescriptor(): string
    {
        return $this->securityDescriptor;
    }
}