| /plugin/bootswrapper/exe/help/ |
| D | grid.txt | 8 <col sm="6">.col-sm-6</col> 9 <col sm="6">.col-sm-6</col> 16 <col sm="6">.col-sm-6</col> 17 <col sm="6">.col-sm-6</col> 24 <col xs="12" sm="6" lg="8">.col-xs-12 .col-sm-6 .col-lg-8</col> 25 <col xs="6" lg="4">.col-xs-6 .col-lg-4</col> 32 <col xs="12" sm="6" lg="8">.col-xs-12 .col-sm-6 .col-lg-8</col> 33 <col xs="6" lg="4">.col-xs-6 .col-lg-4</col> 39 ==== Attributes for "col" ====
|
| /plugin/dataloop/syntax/ |
| D | roll.php | 97 foreach($cols as $col){ 98 $col = trim($col); 99 if(!$col) continue; 100 list($key,$type) = $this->dthlp->_column($col); 118 foreach($cols as $col){ 119 $col = trim($col); 120 $col = trim($col); 121 if(!$col) continue; 122 list($key,$type) = $this->dthlp->_column($col); 174 foreach(array_keys($data['cols']) as $col){ [all …]
|
| D | textloop.php | 106 foreach($cols as $col){ 107 $col = trim($col); 108 if(!$col) continue; 109 list($key,$type) = $this->dthlp->_column($col); 127 foreach($cols as $col){ 128 $col = trim($col); 129 $col = trim($col); 130 if(!$col) continue; 131 list($key,$type) = $this->dthlp->_column($col); 183 foreach(array_keys($data['cols']) as $col){ [all …]
|
| D | loop.php | 106 foreach($cols as $col){ 107 $col = trim($col); 108 if(!$col) continue; 109 list($key,$type) = $this->dthlp->_column($col); 127 foreach($cols as $col){ 128 $col = trim($col); 129 $col = trim($col); 130 if(!$col) continue; 131 list($key,$type) = $this->dthlp->_column($col); 183 foreach(array_keys($data['cols']) as $col){ [all …]
|
| /plugin/edittable/action/ |
| D | editor.php | 156 for ($col = 0; $col < $cols; $col++) { 157 $len = $this->strWidth($data[$row][$col]); 160 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'center') { 167 $meta[$row][$col]['length'] = $len; 169 if ($len > $colmax[$col]) $colmax[$col] = $len; 175 for ($col = 0; $col < $cols; $col++) { 178 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'center') { 181 … } elseif (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'right') { 190 $target = $colmax[$col]; 193 for ($i = 1; $i < $meta[$row][$col]['colspan']; $i++) { [all …]
|
| /plugin/ckgedit/scripts/ |
| D | table_debugging_code.js.unc | 11 for(var col=0; col<rows[i].length; col++) { 12 str += "[" + col + "]"; 13 str+= "text="+rows[i][col].text + " "; 14 str+=" type="+rows[i][col].type + " "; 15 str+= " rowspan=" +rows[i][col].rowspan + " "; 16 str+= " colspan=" +rows[i][col].colspan + " "; 26 for(var col=0; col<rows[i].length; col++) { 27 str+= "|"+rows[i][col].text + " "; 35 function debug_row(rows,row,col,which) { 40 +",column:"+col [all …]
|
| /plugin/ckgdoku/scripts/ |
| D | table_debugging_code.js.unc | 11 for(var col=0; col<rows[i].length; col++) { 12 str += "[" + col + "]"; 13 str+= "text="+rows[i][col].text + " "; 14 str+=" type="+rows[i][col].type + " "; 15 str+= " rowspan=" +rows[i][col].rowspan + " "; 16 str+= " colspan=" +rows[i][col].colspan + " "; 26 for(var col=0; col<rows[i].length; col++) { 27 str+= "|"+rows[i][col].text + " "; 35 function debug_row(rows,row,col,which) { 40 +",column:"+col [all …]
|
| /plugin/data-au/syntax/ |
| D | related.php | 80 foreach(array_keys($dataau['cols']) as $col) { 88 $res = $sqlite->query($sql, $col, $id); 95 $cond[] = " ( T1.key = " . $sqlite->quote_string($col) . 105 $col = $dataau['sort'][0]; 107 if($col == '%pageid%') { 109 } elseif($col == '%title%') { 113 if(!$tables[$col]) { 114 $tables[$col] = 'T' . (++$cnt); 115 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid'; 116 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col); [all …]
|
| D | table.php | 111 foreach($cols as $col) { 112 $col = trim($col); 113 if(!$col) continue; 114 $column = $this->dthlp->_column($col); 129 foreach($cols as $col) { 130 $col = trim(strtolower($col)); 131 if($col[0] == 'c') { 132 $col = 'center'; 133 } elseif($col[0] == 'r') { 134 $col = 'right'; [all …]
|
| /plugin/data/syntax/ |
| D | related.php | 85 foreach (array_keys($data['cols']) as $col) { 92 $rows = $sqlite->queryAll($sql, $col, $id); 98 $cond[] = " ( T1.key = " . $sqlite->getPdo()->quote($col) . 108 $col = $data['sort'][0]; 110 if ($col == '%pageid%') { 112 } elseif ($col == '%title%') { 116 if (!$tables[$col]) { 117 $tables[$col] = 'T' . (++$cnt); 118 … $from .= ' LEFT JOIN data AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid'; 119 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col); [all …]
|
| D | table.php | 121 foreach ($cols as $col) { 122 $col = trim($col); 123 if (!$col) continue; 124 $column = $this->dthlp->column($col); 139 foreach ($cols as $col) { 140 $col = trim(strtolower($col)); 141 if ($col[0] == 'c') { 142 $col = 'center'; 143 } elseif ($col[0] == 'r') { 144 $col = 'right'; [all …]
|
| /plugin/edittable/script/ |
| D | contextmenu.js | 17 … for (var currentCol = selection.start.col; currentCol <= selection.end.col; currentCol += 1) { 18 selectionArray.push({row: currentRow, col: currentCol}); property 39 var col = cell.col; 42 if (meta[row][col].tag && meta[row][col].tag === 'th') { 43 meta[row][col].tag = 'td'; 45 meta[row][col].tag = 'th'; 56 var col = cell.col; 58 meta[row][col].align = 'left'; 66 var col = selection[1]; 67 return (!meta[row][col].align || meta[row][col].align === 'left'); [all …]
|
| D | editor.js | 79 for (var col = 0; col < meta[0].length; col += 1) { 80 if (meta[row][col].hasOwnProperty('rowspan') && meta[row][col].rowspan > 1 || 81 meta[row][col].hasOwnProperty('colspan') && meta[row][col].colspan > 1) { 84 merge.col = col; 85 merge.rowspan = meta[row][col].rowspan; 86 merge.colspan = meta[row][col].colspan; 140 var lastselect = { row: 0, col: 0 }; property 186 cells: function (row, col) { argument 187 return meta[row][col]; 202 renderer: function (instance, td, row, col) { argument [all …]
|
| /plugin/semanticdata/syntax/ |
| D | table.php | 89 foreach($cols as $col){ 90 $col = trim($col); 91 if(!$col) continue; 92 $column = $this->dthlp->_column($col); 103 foreach($cols as $col){ 104 $col = trim($col); 105 $data['headers'][] = $col; 329 foreach ($data['cols'] as &$col){ 330 $key = $col['key']; 350 $type = $col['type']; [all …]
|
| /plugin/doodle4/ |
| D | doodle_template.php | 60 <?php for ($col = 0; $col < $c; $col++) { variable 61 echo $userData['choice'][$col]; 72 for ($col = 0; $col < $c; $col++) { variable 74 echo $template['count'][$col]; 157 for ($col = 0; $col < $c; $col++) { variable 158 $userAuswahl[$userZahl][$col] = $userData['choice'][$col]; 180 <?php for ($col = 0; $col < $c1 ; $col++) { variable 182 echo $userAuswahl[$col][$userZahl];
|
| /plugin/asciidocjs/node_modules/cliui/build/lib/ |
| D | index.js | 96 rrow.forEach((col, c) => { 99 let ts = col; // temporary string used during alignment/padding. 100 if (wrapWidth > mixin.stringWidth(col)) { 101 ts += ' '.repeat(wrapWidth - mixin.stringWidth(col)); 164 row.forEach((col, c) => { 166 col.width = widths[c]; 168 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n'); 171 wrapped = col.text.split('\n'); 173 if (col.border) { 174 wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.'); [all …]
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/ |
| H A D | CollectionTest.php | 31 $col = $this->getInstance(); 32 $this->assertEquals('notifications', $col->getName()); 36 ), $col->getChildren()); 42 $col = $this->getInstance(); 43 $this->assertEquals('principals/user1', $col->getOwner()); 49 $col = $this->getInstance(); 50 $this->assertNull($col->getGroup()); 56 $col = $this->getInstance(); 70 $this->assertEquals($expected, $col->getACL()); 79 $col = $this->getInstance(); [all …]
|
| /plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
| D | module.graphic.bmp.php | 339 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) { 343 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex]; 344 $col++; 356 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) { 360 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex]; 361 $col++; 373 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) { 375 $thisfile_bmp['data'][$row][$col] = $thisfile_bmp['palette'][$paletteindex]; 386 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) { 387 …$thisfile_bmp['data'][$row][$col] = (ord($BMPpixelData[$pixeldataoffset+2]) << 16) | (ord($BMPpixe… [all …]
|
| /plugin/structat/meta/ |
| D | SearchConfigAt.php | 109 foreach($this->columns as $col) { 112 if($col->isMulti()) { 113 $datatable = "data_{$col->getTable()}"; 114 $multitable = "multi_{$col->getTable()}"; 123 $MN.colref = {$col->getColref()}" 126 $col->getType()->select($QB, $MN, 'value', $CN); 130 $col->getType()->select($QB, 'data_' . $col->getTable(), $col->getColName(), $CN); 141 list($col, $value, $comp, $op) = $filter; 143 $datatable = "data_{$col->getTable()}"; 144 $multitable = "multi_{$col->getTable()}"; [all …]
|
| /plugin/struct/meta/ |
| H A D | SearchSQLBuilder.php | 88 foreach ($columns as $col) { 91 if ($col->isMulti()) { 92 $datatable = "data_{$col->getTable()}"; 93 $multitable = "multi_{$col->getTable()}"; 102 $MN.colref = {$col->getColref()}" 105 $col->getType()->select($this->qb, $MN, 'value', $CN); 109 … $col->getType()->select($this->qb, 'data_' . $col->getTable(), $col->getColName(), $CN); 130 [$col, $value, $comp, $op] = $filter; 132 $datatable = "data_{$col->getTable()}"; 133 $multitable = "multi_{$col->getTable()}"; [all …]
|
| /plugin/upgrade/myvendor/splitbrain/php-cli/src/ |
| D | TableFormatter.php | 127 foreach ($columns as $idx => $col) { 129 if ((string)intval($col) === (string)$col) { 130 $fixed += $col; 134 if (substr($col, -1) == '%') { 137 if ($col == '*') { 146 throw new Exception("unknown column format $col"); 153 foreach ($columns as $idx => $col) { 154 if (substr($col, -1) != '%') { 157 $perc = floatval($col); 196 foreach ($columns as $col => $width) { [all …]
|
| /plugin/edittable/renderer/ |
| D | json.php | 118 $col = $this->current_col; 120 …$this->tdata[$row][$col] = trim(str_replace("\n", ' ', $this->doc)); // no newlines in table cells! 121 $this->tmeta[$row][$col] = $this->tmetacell; // as remembered in the open call 130 $this->tmeta[$row][$col + $c]['hide'] = true; 131 $this->tmeta[$row][$col + $c]['rowspan'] = 1; 132 $this->tmeta[$row][$col + $c]['colspan'] = 1; 133 $this->tdata[$row][$col + $c] = ''; 137 $this->tmeta[$row + $r][$col + $c]['hide'] = true; 138 $this->tmeta[$row + $r][$col + $c]['rowspan'] = 1; 139 $this->tmeta[$row + $r][$col + $c]['colspan'] = 1; [all …]
|
| /plugin/pagelist/ |
| D | helper.php | 198 …* @param string $col column name. Assumption: unique between all builtin columns and plugin suppli… 200 public function addColumn($plugin, $col) argument 203 if (!isset($this->plugins[$plugin]) || !in_array($col, $this->plugins[$plugin])) { 204 $this->plugins[$plugin][] = $col; 206 $this->column[$col] = true; 212 * @param string $col column name 216 public function modifyColumn($col, $value) argument 218 if (isset($this->column[$col])) { 219 $this->column[$col] = $value; 371 foreach ($columns as $col) { [all …]
|
| /plugin/doodle2/ |
| D | doodle_template.php | 44 <?php for ($col = 0; $col < $c; $col++) { variable 45 echo $userData['choice'][$col]; 53 <?php for ($col = 0; $col < $c; $col++) { ?> variable 54 <th class="centeralign"><b><?php echo $template['count'][$col] ?></b></th>
|
| /plugin/doodle3/ |
| D | doodle_template.php | 46 <?php for ($col = 0; $col < $c; $col++) { variable 47 echo $userData['choice'][$col]; 55 <?php for ($col = 0; $col < $c; $col++) { ?> variable 56 <th class="centeralign"><b><?php echo $template['count'][$col] ?></b></th>
|