Go to the documentation of this file.
13 $this->
addElement(
'caption',
false,
'Inline',
'Common');
19 'cellpadding' =>
'Length',
20 'cellspacing' =>
'Length',
21 'frame' =>
'Enum#void,above,below,hsides,lhs,rhs,vsides,box,border',
22 'rules' =>
'Enum#none,groups,rows,cols,all',
30 'align' =>
'Enum#left,center,right,justify,char',
31 'charoff' =>
'Length',
32 'valign' =>
'Enum#top,middle,bottom,baseline',
35 $cell_t = array_merge(
38 'colspan' =>
'Number',
39 'rowspan' =>
'Number',
42 'scope' =>
'Enum#row,col,rowgroup,colgroup',
46 $this->
addElement(
'td',
false,
'Flow',
'Common', $cell_t);
47 $this->
addElement(
'th',
false,
'Flow',
'Common', $cell_t);
49 $this->
addElement(
'tr',
false,
'Required: td | th',
'Common', $cell_align);
51 $cell_col = array_merge(
54 'width' =>
'MultiLength',
58 $this->
addElement(
'col',
false,
'Empty',
'Common', $cell_col);
59 $this->
addElement(
'colgroup',
false,
'Optional: col',
'Common', $cell_col);
61 $this->
addElement(
'tbody',
false,
'Required: tr',
'Common', $cell_align);
62 $this->
addElement(
'thead',
false,
'Required: tr',
'Common', $cell_align);
63 $this->
addElement(
'tfoot',
false,
'Required: tr',
'Common', $cell_align);