Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
TableCell.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Console\Helper;
13
14 use Symfony\Component\Console\Exception\InvalidArgumentException;
15
16 /**
17 * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
18 */
19 class TableCell
20 {
21 private $value;
22 private $options = [
23 'rowspan' => 1,
24 'colspan' => 1,
25 ];
26
27 /**
28 * @param string $value
29 */
30 public function __construct($value = '', array $options = [])
31 {
32 if (is_numeric($value) && !\is_string($value)) {
33 $value = (string) $value;
34 }
35
36 $this->value = $value;
37
38 // check option names
39 if ($diff = array_diff(array_keys($options), array_keys($this->options))) {
40 throw new InvalidArgumentException(sprintf('The TableCell does not support the following options: \'%s\'.', implode('\', \'', $diff)));
41 }
42
43 $this->options = array_merge($this->options, $options);
44 }
45
46 /**
47 * Returns the cell value.
48 *
49 * @return string
50 */
51 public function __toString()
52 {
53 return $this->value;
54 }
55
56 /**
57 * Gets number of colspan.
58 *
59 * @return int
60 */
61 public function getColspan()
62 {
63 return (int) $this->options['colspan'];
64 }
65
66 /**
67 * Gets number of rowspan.
68 *
69 * @return int
70 */
71 public function getRowspan()
72 {
73 return (int) $this->options['rowspan'];
74 }
75 }
76