@@ 24-31 (lines=8) @@ | ||
21 | private $_footer; |
|
22 | private $_afterCompileEvents; |
|
23 | ||
24 | public function __construct($identifier, $rowCount, $colCount) { |
|
25 | parent::__construct($identifier, "table", "ui table"); |
|
26 | $this->content=array (); |
|
27 | $this->setRowCount($rowCount, $colCount); |
|
28 | $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
29 | $this->_compileParts=["thead","tbody","tfoot"]; |
|
30 | $this->_afterCompileEvents=[]; |
|
31 | } |
|
32 | ||
33 | /** |
|
34 | * Returns/create eventually a part of the table corresponding to the $key : thead, tbody or tfoot |
@@ 26-33 (lines=8) @@ | ||
23 | private $_footer; |
|
24 | private $_afterCompileEvents; |
|
25 | ||
26 | public function __construct($identifier, $rowCount, $colCount) { |
|
27 | parent::__construct($identifier, "table", "ui table"); |
|
28 | $this->content=array (); |
|
29 | $this->setRowCount($rowCount, $colCount); |
|
30 | $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
31 | $this->_compileParts=["thead","tbody","tfoot"]; |
|
32 | $this->_afterCompileEvents=[]; |
|
33 | } |
|
34 | ||
35 | /** |
|
36 | * {@inheritDoc} |