/plugin/latexport/implementation/ |
H A D | decorator_tables.php | 10 public $colspan; variable in CellSize 22 public function __construct($colspan = 1, $rowspan = 0) { argument 23 $this->colspan = $colspan; 27 public function setSize($colspan, $rowspan) { argument 28 $this->colspan = $colspan; 33 return $this->colspan; 50 return "<c=$this->colspan,r=$this->rowspan>"; 144 * @param int $colspan 160 * @param int $colspan 173 function computePlaceholders($colspan, $rowspan) { argument [all …]
|
/plugin/odt/ODT/elements/ |
H A D | ODTElementTableCell.php | 14 protected $colspan; variable in ODTElementTableCell 21 public function __construct($style_name=NULL, $colspan = 1, $rowspan = 1) { argument 27 $this->setColumnSpan($colspan); 46 $colspan = $this->getColumnSpan(); 51 if ( $colspan > 1 ) { 52 $encoded .= ' table:number-columns-spanned="'.$colspan.'"'; 68 $colspan = $this->getColumnSpan(); 69 for ($i = 1 ; $i < $colspan ; $i++) { 126 $this->colspan = $value; 135 return $this->colspan;
|
H A D | ODTElementTableHeaderCell.php | 21 public function __construct($style_name=NULL, $colspan = 0, $rowspan = 0) { argument 22 parent::__construct($style_name, $colspan, $rowspan); 32 $colspan = $this->getColumnSpan(); 46 if ( $colspan > 1 ) { 47 $encoded .= ' table:number-columns-spanned="'.$colspan.'"'; 48 } else if ($auto_columns === true && $colspan == 0) {
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | box.table.row.php | 44 for ($j=1; $j<$this->content[$i]->colspan; $j++) { 110 if ($this->content[$i]->colspan > 1) { 111 $colspan = new CellSpan; 112 $colspan->row = $row_index; 113 $colspan->column = $i; 114 $colspan->size = $this->content[$i]->colspan; 116 $colspans[] = $colspan; 145 if ($this->content[$i]->colspan > 1) { 160 if ($this->content[$i]->colspan > 1) {
|
H A D | strategy.table.layout.auto.php | 15 foreach ($colspans as $colspan) { 16 $cell = $table->content[$colspan->row]->content[$colspan->column]; 27 for ($i=$colspan->column; $i < $colspan->column+$colspan->size; $i++) { 59 array_splice($widths, $colspan->column, $colspan->size, $spanned_widths);
|
H A D | box.table.cell.fake.php | 4 var $colspan; variable in FakeTableCellBox 28 $this->colspan = 1;
|
/plugin/edittable/renderer/ |
H A D | json.php | 71 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument 72 $this->_tablefield_open('th', $colspan, $align, $rowspan); 79 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument 80 $this->_tablefield_open('td', $colspan, $align, $rowspan); 95 private function _tablefield_open($tag, $colspan, $align, $rowspan) { argument 104 $this->tmetacell['colspan'] = $colspan; 126 $colspan = $this->tmetacell['colspan']; 128 for($c = 1; $c < $colspan; $c++) {
|
/plugin/odt/ODT/ |
H A D | ODTTable.php | 254 * @param int $colspan 279 ($cellStyle, $colspan, $rowspan); 303 * @param int $colspan 334 ($cellStyle, $colspan, $rowspan); 444 * @param int $colspan 456 self::tableHeaderOpenUseProperties($params, $properties, $colspan, $rowspan); 461 * @param int $colspan 466 self::tableCellOpenUsePropertiesInternal ($params, $properties, true, $colspan, $rowspan); 534 self::tableCellOpenUseProperties($params, $properties, $colspan, $rowspan); 541 self::tableCellOpenUsePropertiesInternal ($params, $properties, false, $colspan, $rowspan); [all …]
|
/plugin/btable2/ |
H A D | syntax.php | 226 $colspan = $columns_count + 2; 228 $colspan = $columns_count + 1; 236 $colspan = $columns_count + 1; 238 $colspan = $columns_count; 246 $renderer->tableheader_open($colspan); 299 $renderer->doc .= ' <td class="centeralign" colspan="'.$colspan.'">'; 322 …odle, $columns, $columns_count, $total_rows, $change_row, $allow_changes, $colspan, $colongroups) { argument 353 … $ret .= ' <th colspan="' . $colspan . '" style="padding-bottom: 0;">' . $colg . '</td>' . "\n"; 490 …orm($dID, $columns, $columns_count, $rows, $change_row, $allow_changes, $colspan, $add_delete_row)… argument 552 $ret .= ' <td class="centeralign" colspan="'.$colspan.'">'; [all …]
|
/plugin/latexport/_test/ |
H A D | command.php | 219 private $colspan; variable in CommandTableHeaderOpen 223 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument 225 $this->colspan = $colspan; 238 private $colspan = 1; variable in CommandTableCellOpen 242 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument 244 $this->colspan = $colspan;
|
H A D | decorator_mock.php | 186 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument 187 $this->listOfCommands->enqueue(new CommandTableHeaderOpen($colspan, $align, $rowspan)); 194 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument 195 $this->listOfCommands->enqueue(new CommandTableCellOpen($colspan, $align, $rowspan));
|
/plugin/edittable/script/ |
H A D | editor.js | 48 return { rowspan: 1, colspan: 1 }; 81 meta[row][col].hasOwnProperty('colspan') && meta[row][col].colspan > 1) { 86 merge.colspan = meta[row][col].colspan; 207 if (cellMeta.colspan) { 208 $td.attr('colspan', cellMeta.colspan); 311 meta[row][col].colspan = 1; 324 var colspan = this.mergeCells.mergedCellInfoCollection[merge].colspan; 326 meta[row][col].colspan = colspan; 332 for (c = col; c < col + colspan; c += 1) { 338 meta[r][c].colspan = 1; [all …]
|
/plugin/revealjs/ |
H A D | renderer.php | 353 * @param int $colspan 357 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument 364 if($colspan > 1) { 365 $this->_counter['cell_counter'] += $colspan - 1; 366 $this->doc .= ' colspan="'.$colspan.'"'; 384 * @param int $colspan 388 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument 395 if($colspan > 1) { 396 $this->_counter['cell_counter'] += $colspan - 1; 397 $this->doc .= ' colspan="'.$colspan.'"';
|
/plugin/dtable/ |
H A D | script.js | 312 var colspan = $this_cell.attr("colspan"); 351 jQuery(this).attr("colspan", spans[index][td_ind][0]); 353 jQuery(this).removeAttr("colspan"); 427 var colspan = cells[i][0]; 435 var mod = mod_cell_callback.call(this, tclass, rowspan, colspan, content); 439 colspan = mod[2]; 470 if (colspan > 1) 472 col = colspan_callback.call(this, $form_row, colspan, width, height, tclass, col, content); 548 function($form_row, colspan, widt 544 insert_colspan_callback($form_row, colspan, width, height, tclass, col) global() argument 587 AnonymousFunctione89ab0b81400($form_row, colspan, width, height, tclass, col, content) global() argument 641 AnonymousFunctione89ab0b81600(cclass, rowspan, colspan, value) global() argument 681 mod_row_call(cclass, rowspan, colspan, value) global() argument [all...] |
/plugin/exttab3/helper/ |
H A D | odt.php | 38 $colspan = 1; 40 $colspan = $matches[1]; 90 $renderer->_odtTableHeaderOpenUseCSS($colspan, $rowspan, $tag, $attr); 96 $renderer->_odtTableCellOpenUseCSS($colspan, $rowspan, $tag, $attr);
|
/plugin/combo/vendor/carica/phpcss/ |
H A D | README.md | 74 <th colspan="3">Attributes</th> 98 <th colspan="3">Structural Pseudo Classes</th> 137 <th colspan="3">Link Pseudo Classes</th> 146 <th colspan="3">User Action Pseudo Classes</th> 158 <th colspan="3">Target Pseudo Class</th> 164 <th colspan="3">Language Pseudo Class</th> 170 <th colspan="3">UI Element states Pseudo Class</th> 182 <th colspan="3">Pseudo Elements</th> 197 <th colspan="3">Class Selector</th> 203 <th colspan [all...] |
/plugin/dw2markdown/ |
H A D | renderer.php | 540 * @param int $colspan 544 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument 545 $this->doc .= str_repeat( '|', $colspan ); 546 $this->tableColumns += $colspan; 558 * @param int $colspan 562 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument 563 $this->doc .= str_repeat( '|', $colspan );
|
/plugin/dokutexit/ |
H A D | latex.php | 713 $this->$table_mode($colspan, $align); 723 $this->$table_mode($colspan, $align); 864 'args' => array($colspan, $align))); 876 'args' => array($colspan, $align))); 921 $this->tablecell_open($colspan, $align); 935 if ($colspan > 0) { 1020 $this->tablecell_open($colspan, $align); 1034 if ($colspan > 1) { 1124 $this->tablecell_open($colspan, $align); 1138 if ($colspan > 0) { [all …]
|
/plugin/ckgdoku/scripts/ |
H A D | table_debugging_code.js.unc | 16 str+= " colspan=" +rows[i][col].colspan + " "; 42 +", colspans:"+ rows[row][col].colspan
|
/plugin/ckgedit/scripts/ |
H A D | table_debugging_code.js.unc | 16 str+= " colspan=" +rows[i][col].colspan + " "; 42 +", colspans:"+ rows[row][col].colspan
|
/plugin/struct/renderer/ |
H A D | csv.php | 78 * @param int $colspan ignored 83 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1) argument 106 * @param int $colspan ignored 110 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1) argument 112 $this->tablecell_open($colspan, $align, $rowspan);
|
/plugin/querychangelog/ |
H A D | admin.php | 201 ptln ('<tr><td bgcolor="red" colspan="5">'); 221 ptln( ' <tr><td colspan="5"> </td></tr>'); 231 ptln( ' <td colspan="3" align="left"><select name="base_ns">'); 266 ptln( ' <tr><td colspan="5"> </td></tr>'); 270 …ptln( ' <td colspan="5" align="center"><input type="submit" value="'.formtext($this->lang['…
|
/plugin/latexit/tests/dw_orig_test_files/ |
H A D | test8.txt | 3 | Row 2 Col 1 | some colspan (note the double pipe) || 8 ^ Heading 4 | no colspan this time | |
|
/plugin/form/ |
H A D | syntax.php | 910 $data .= '<tr><td colspan="2">' 1019 $data .= '<tr><td colspan="2"> </td></tr>'; 1057 $data .= '<tr><td colspan="2"><span style="color:#FF0000;">'
|
/plugin/prosemirror/ |
H A D | renderer.php | 221 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1) 223 $this->openTableCell('table_cell', $colspan, $align, $rowspan); 233 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1) 235 $this->openTableCell('table_header', $colspan, $align, $rowspan); 248 * @param int $colspan argument 252 protected function openTableCell($type, $colspan, $align, $rowspan) 254 $this->colcount += $colspan; 257 $node->attr('colspan', $colspan); 217 tablecell_open($colspan = 1, $align = null, $rowspan = 1) global() argument 229 tableheader_open($colspan = 1, $align = null, $rowspan = 1) global() argument
|