/plugin/latexit/classes/ |
H A D | Rowspan.php | 19 protected $rowspan; variable in Rowspan 28 * @param int $rowspan Rowspan itself. 31 public function __construct($rowspan, $cell_id) { argument 32 $this->rowspan = $rowspan; 40 return $this->rowspan; 53 * @param int $rowspan 55 public function setRowspan($rowspan) { argument 56 $this->rowspan = $rowspan;
|
H A D | RowspanHandler.php | 32 * @param int $rowspan Rowspan value itself. 35 public function insertRowspan($rowspan, $cell_id) { argument 36 $rs = new Rowspan($rowspan, $cell_id);
|
/plugin/latexport/implementation/ |
H A D | decorator_tables.php | 12 public $rowspan; variable in CellSize 22 public function __construct($colspan = 1, $rowspan = 0) { argument 24 $this->rowspan = $rowspan; 27 public function setSize($colspan, $rowspan) { argument 29 $this->rowspan = $rowspan; 37 return $this->rowspan; 42 if ($this->rowspan > 0) { 50 return "<c=$this->colspan,r=$this->rowspan>"; 146 * @param int $rowspan 162 * @param int $rowspan [all …]
|
H A D | decorator_persister.php | 982 * @param int $rowspan 984 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument 990 … \\multicolumn{".$colspan."}".$this->alignment($align)."{\\multirow{".$rowspan."}{*}{\\thead{"); 1005 * @param int $rowspan 1007 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument 1013 … \\multicolumn{".$colspan."}".$this->alignment($align)."{\\multirow{".$rowspan."}{*}{\\makecell{…
|
H A D | decorator.php | 984 * @param int $rowspan 986 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument 988 $this->decorator->tableheader_open($colspan, $align, $rowspan); 1004 * @param int $rowspan 1006 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument 1008 $this->decorator->tablecell_open($colspan, $align, $rowspan);
|
/plugin/odt/ODT/elements/ |
H A D | ODTElementTableCell.php | 15 protected $rowspan; variable in ODTElementTableCell 21 public function __construct($style_name=NULL, $colspan = 1, $rowspan = 1) { argument 28 $this->setRowSpan($rowspan); 47 $rowspan = $this->getRowSpan(); 54 if ($rowspan > 1) { 55 $encoded .= ' table:number-rows-spanned="'.$rowspan.'"'; 144 $this->rowspan = $value; 153 return $this->rowspan;
|
H A D | ODTElementTableHeaderCell.php | 21 public function __construct($style_name=NULL, $colspan = 0, $rowspan = 0) { argument 22 parent::__construct($style_name, $colspan, $rowspan); 33 $rowspan = $this->getRowSpan(); 51 if ( $rowspan > 1 ) { 52 $encoded .= ' table:number-rows-spanned="'.$rowspan.'"';
|
/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 105 $this->tmetacell['rowspan'] = $rowspan; 125 $rowspan = $this->tmetacell['rowspan']; 136 for($r = 1; $r < $rowspan; $r++) { 145 for($r = 1; $r < $rowspan; $r++) {
|
H A D | inverse.php | 613 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument 614 $this->_cellopen('th', $colspan, $align, $rowspan); 617 function _cellopen($tag, $colspan, $align, $rowspan) { argument 620 if($rowspan > 1) { 621 $this->_rowspans[$this->_key] = $rowspan; 646 function tablecell_open($colspan = 1, $align = null, $rowspan = 1) { argument 647 $this->_cellopen('td', $colspan, $align, $rowspan); 702 $rowspan = $cell['rowspan']; 704 while($rowspan-- > 1) {
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | box.table.row.php | 83 if ($cell->rowspan == 1) { 98 if ($cell->rowspan == 1) { 127 if ($this->content[$i]->rowspan > 1) { 128 $rowspan = new CellSpan; 129 $rowspan->row = $row_index; 130 $rowspan->column = $i; 131 $rowspan->size = $this->content[$i]->rowspan; 132 $spans[] = $rowspan; 174 if ($this->content[$i]->rowspan <= 1) {
|
H A D | box.table.cell.fake.php | 5 var $rowspan; variable in FakeTableCellBox 29 $this->rowspan = 1;
|
H A D | box.table.php | 199 if ($cell->rowspan > 1) { continue; } 350 $row->content[$i_col]->rowspan = min($row->content[$i_col]->rowspan, 353 if ($row->content[$i_col]->rowspan > 1) { 422 return $this->content[$y]->content[$x]->rowspan; 1274 foreach ($this->get_rowspans() as $rowspan) { 1276 … $cell_height = $this->content[$rowspan->row]->content[$rowspan->column]->get_full_height(); 1279 $cell_row_heights = array_slice($heights, $rowspan->row, $rowspan->size); 1282 $flags = array_slice($this->get_non_constrained_flags(), $rowspan->row, $rowspan->size); 1293 … $flags = array_slice($this->get_non_constant_constrained_flags(), $rowspan->row, $rowspan->size); 1303 $rowspan->row, [all …]
|
/plugin/exttab3/helper/ |
H A D | odt.php | 32 $rowspan = 1; 34 $rowspan = $matches[1]; 63 $renderer->_odtTableHeaderOpenUseProperties($properties, 0, $rowspan); 87 $renderer->_odtTableHeaderOpenUseCSS(0, $rowspan, $tag, $attr); 90 $renderer->_odtTableHeaderOpenUseCSS($colspan, $rowspan, $tag, $attr); 96 $renderer->_odtTableCellOpenUseCSS($colspan, $rowspan, $tag, $attr);
|
/plugin/odt/ODT/ |
H A D | ODTTable.php | 255 * @param int $rowspan 279 ($cellStyle, $colspan, $rowspan); 304 * @param int $rowspan 334 ($cellStyle, $colspan, $rowspan); 445 * @param int $rowspan 456 self::tableHeaderOpenUseProperties($params, $properties, $colspan, $rowspan); 462 * @param int $rowspan 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/dtable/ |
H A D | script.js | 313 var rowspan = $this_cell.attr("rowspan"); 357 jQuery(this).attr("rowspan", spans[index][td_ind][1]); 359 jQuery(this).removeAttr("rowspan"); 398 var rowspan = jQuery(this).attr("rowspan"); 399 if (typeof rowspan !== 'undefined' && rowspan !== false && parseInt(rowspan) > rows_after) { 428 var rowspan 641 AnonymousFunctione89ab0b81600(cclass, rowspan, colspan, value) global() argument 681 mod_row_call(cclass, rowspan, colspan, value) global() argument [all...] |
/plugin/latexport/_test/ |
H A D | command.php | 221 private $rowspan; variable in CommandTableHeaderOpen 223 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument 227 $this->rowspan = $rowspan; 240 private $rowspan = 1; variable in CommandTableCellOpen 242 function __construct($colspan = 1, $align = null, $rowspan = 1) { argument 246 $this->rowspan = $rowspan;
|
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 }; 80 if (meta[row][col].hasOwnProperty('rowspan') && meta[row][col].rowspan > 1 || 85 merge.rowspan = meta[row][col].rowspan; 213 if (cellMeta.rowspan) { 214 $td.attr('rowspan', cellMeta.rowspan); 312 meta[row][col].rowspan = 1; 325 var rowspan = this.mergeCells.mergedCellInfoCollection[merge].rowspan; 327 meta[row][col].rowspan = rowspan; 331 for (r = row; r < row + rowspan; r += 1) { 337 meta[r][c].rowspan = 1; [all …]
|
/plugin/revealjs/ |
H A D | renderer.php | 355 * @param int $rowspan 357 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument 368 if($rowspan > 1) { 369 $this->doc .= ' rowspan="'.$rowspan.'"'; 386 * @param int $rowspan 388 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = NULL) { argument 399 if($rowspan > 1) { 400 $this->doc .= ' rowspan="'.$rowspan.'"';
|
/plugin/ckgdoku/scripts/ |
H A D | table_debugging_code.js.unc | 15 str+= " rowspan=" +rows[i][col].rowspan + " "; 41 +", rowspans:"+ rows[row][col].rowspan
|
/plugin/ckgedit/scripts/ |
H A D | table_debugging_code.js.unc | 15 str+= " rowspan=" +rows[i][col].rowspan + " "; 41 +", rowspans:"+ rows[row][col].rowspan
|
/plugin/struct/renderer/ |
H A D | csv.php | 80 * @param int $rowspan ignored 83 public function tablecell_open($colspan = 1, $align = null, $rowspan = 1) argument 108 * @param int $rowspan ignored 110 public function tableheader_open($colspan = 1, $align = null, $rowspan = 1) argument 112 $this->tablecell_open($colspan, $align, $rowspan);
|
/plugin/dw2markdown/ |
H A D | renderer.php | 542 * @param int $rowspan 544 function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument 560 * @param int $rowspan 562 function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null) { argument
|
/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); 250 * @param int $rowspan 252 protected function openTableCell($type, $colspan, $align, $rowspan) 258 $node->attr('rowspan', $rowspan); 217 tablecell_open($colspan = 1, $align = null, $rowspan = 1) global() argument 229 tableheader_open($colspan = 1, $align = null, $rowspan = 1) global() argument 248 openTableCell($type, $colspan, $align, $rowspan) global() argument
|
/plugin/sqlraw/ |
H A D | test2.php | 117 if (isset($cell->rowspan)) { 119 for ($i=1; $i <= ($cell->rowspan)-1; $i++) {
|