PluginProbe
wpDataTables – WordPress Data Table, Dynamic Tables & Table Charts Plugin / 6.5.1.7
wpDataTables – WordPress Data Table, Dynamic Tables & Table Charts Plugin v6.5.1.7
6.5.1.7 6.5.1.6 6.5.1.5 6.5.1.4 6.5.1.3 6.5.1.2 6.5.1.1 6.5.0.9 6.5.0.8 6.5.0.7 6.5.0.6 trunk 3.4.2.40 3.4.2.41 3.4.2.42 3.4.2.43 3.4.2.44 3.4.2.45 3.4.2.46 3.4.2.47 3.4.2.48 3.4.2.49 3.4.2.50 6.3.2 6.3.3.1 All 47 releases
wpdatatables / lib / phpoffice / phpspreadsheet / src / PhpSpreadsheet / Cell / IgnoredErrors.php

IgnoredErrors.php in wpDataTables – WordPress Data Table, Dynamic Tables & Table Charts Plugin 6.5.1.7, at lib/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IgnoredErrors.php

67 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace PhpOffice\PhpSpreadsheet\Cell;
4
5 class IgnoredErrors
6 {
7 /** @var bool */
8 private $numberStoredAsText = false;
9
10 /** @var bool */
11 private $formula = false;
12
13 /** @var bool */
14 private $twoDigitTextYear = false;
15
16 /** @var bool */
17 private $evalError = false;
18
19 public function setNumberStoredAsText(bool $value): self
20 {
21 $this->numberStoredAsText = $value;
22
23 return $this;
24 }
25
26 public function getNumberStoredAsText(): bool
27 {
28 return $this->numberStoredAsText;
29 }
30
31 public function setFormula(bool $value): self
32 {
33 $this->formula = $value;
34
35 return $this;
36 }
37
38 public function getFormula(): bool
39 {
40 return $this->formula;
41 }
42
43 public function setTwoDigitTextYear(bool $value): self
44 {
45 $this->twoDigitTextYear = $value;
46
47 return $this;
48 }
49
50 public function getTwoDigitTextYear(): bool
51 {
52 return $this->twoDigitTextYear;
53 }
54
55 public function setEvalError(bool $value): self
56 {
57 $this->evalError = $value;
58
59 return $this;
60 }
61
62 public function getEvalError(): bool
63 {
64 return $this->evalError;
65 }
66 }
67