Home
last modified time | relevance | path

Searched refs:col (Results 1 – 25 of 378) sorted by relevance

12345678910>>...16

/plugin/bootswrapper/exe/help/
H A Dgrid.txt8 <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/
H A Droll.php98 $col = trim($col);
118 foreach($cols as $col){
119 $col = trim($col);
120 $col = trim($col);
121 if(!$col) continue;
289 if($col == '%pageid%'){
297 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
316 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
341 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
355 if(!$tables[$col]){
[all …]
H A Dtextloop.php106 foreach($cols as $col){
107 $col = trim($col);
108 if(!$col) continue;
128 $col = trim($col);
129 $col = trim($col);
130 if(!$col) continue;
184 if($col == '%pageid%'){
337 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
356 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
395 if(!$tables[$col]){
[all …]
H A Dloop.php106 foreach($cols as $col){
107 $col = trim($col);
108 if(!$col) continue;
128 $col = trim($col);
129 $col = trim($col);
130 if(!$col) continue;
184 if($col == '%pageid%'){
413 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
432 $from .= ' AND '.$tables[$col].".key = '".sqlite_escape_string($col)."'";
471 if(!$tables[$col]){
[all …]
/plugin/edittable/action/
H A Deditor.php156 for ($col = 0; $col < $cols; $col++) {
160 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'center') {
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];
200 $meta[$row + $i][$col]['colspan'] = $meta[$row][$col]['colspan'];
209 if (isset($meta[$row][$col]['align']) && $meta[$row][$col]['align'] == 'right') {
217 if (!(isset($meta[$row][$col]['hide']) && $meta[$row][$col]['hide']) || $cdata) {
[all …]
/plugin/ckgdoku/scripts/
H A Dtable_debugging_code.js.unc11 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 + " ";
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
41 +", rowspans:"+ rows[row][col].rowspan
43 +", text:"+rows[row][col].text,
[all …]
/plugin/ckgedit/scripts/
H A Dtable_debugging_code.js.unc11 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 + " ";
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
41 +", rowspans:"+ rows[row][col].rowspan
43 +", text:"+rows[row][col].text,
[all …]
/plugin/data-au/syntax/
H A Drelated.php105 $col = $dataau['sort'][0];
107 if($col == '%pageid%') {
109 } elseif($col == '%title%') {
113 if(!$tables[$col]) {
115 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
116 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
130 $col = $filter['key'];
133 if($col == '%pageid%') {
139 if(!$tables[$col]) {
141 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = pages.pid';
[all …]
H A Dtable.php112 $col = trim($col);
130 $col = trim(strtolower($col));
144 $col = trim($col);
576 $key = $col['key'];
593 $type = $col['type'];
609 unset($col);
613 $col = $dataau['sort'][0];
615 if($col == '%pageid%') {
625 if(!$tables[$col]) {
628 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
[all …]
/plugin/data/syntax/
H A Drelated.php85 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]
[all...]
H A Dtable.php119 case 'col':
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[
[all...]
/plugin/edittable/script/
H A Dcontextmenu.js17 … for (var currentCol = selection.start.col; currentCol <= selection.end.col; currentCol += 1) {
39 var col = cell.col;
42 if (meta[row][col].tag && meta[row][col].tag === 'th') {
56 var col = cell.col;
66 var col = selection[1];
67 return (!meta[row][col].align || meta[row][col].align === 'left');
75 var col = cell.col;
86 return (meta[row][col].align && meta[row][col].align === 'center');
94 var col = cell.col;
105 return (meta[row][col].align && meta[row][col].align === 'right');
[all …]
H A Deditor.js79 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;
187 return meta[row][col];
305 for (col = 0; col < data[0].length; col += 1) {
323 col = this.mergeCells.mergedCellInfoCollection[merge].col;
332 for (c = col; c < col + colspan; c += 1) {
358 for (col = 0; col < data[0].length; col += 1) {
359 dataLBFixed[row][col] = data[row][col].replace(/(\r\n|\n|\r)/g, '\\\\ ');
[all …]
/plugin/doodle4/
H A Ddoodle_template.php60 <?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/semanticdata/syntax/
H A Dtable.php89 foreach($cols as $col){
90 $col = trim($col);
91 if(!$col) continue;
103 foreach($cols as $col){
104 $col = trim($col);
330 $key = $col['key'];
350 $type = $col['type'];
360 unset($col);
366 if($col == '%pageid%'){
374 if(!$tables[$col]){
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/
H A DCollectionTest.php31 $col = $this->getInstance();
32 $this->assertEquals('notifications', $col->getName());
36 ), $col->getChildren());
42 $col = $this->getInstance();
49 $col = $this->getInstance();
50 $this->assertNull($col->getGroup());
56 $col = $this->getInstance();
70 $this->assertEquals($expected, $col->getACL());
79 $col = $this->getInstance();
80 $col->setACL(array());
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.graphic.bmp.php339 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
344 $col++;
356 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
361 $col++;
373 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
386 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
399 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
603 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
649 for ($col = 0; $col < $BMPinfo['resolution_x']; $col++) {
650 if (isset($BMPinfo['bmp']['data'][$row][$col])) {
[all …]
/plugin/structat/meta/
H A DSearchConfigAt.php109 foreach($this->columns as $col) {
112 if($col->isMulti()) {
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()}";
147 if($col->isMulti()) {
162 $colnam = $col->getColName();
170 list($col, $asc, $nc) = $sort;
172 $colname = $col->getColName(false);
[all …]
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php127 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);
[all...]
/plugin/struct/meta/
H A DSearch.php111 foreach ($this->columns as $key => $col) {
112 if ($col->getLabel() === $colname) unset($this->columns[$key]);
117 $col = $this->findColumn($colname);
118 if (!$col) return; //FIXME do we really want to ignore missing columns?
119 $this->columns[] = $col;
134 $col = $this->findColumn($colname);
135 if (!$col) return; //FIXME do we really want to ignore missing columns?
137 $this->sortby[$col->getFullQualifiedLabel()] = [$col, $asc, $nc];
195 * @return array|null [Column col, strin
[all...]
/plugin/pagelist/
H A Dhelper.php189 * (optional) Adds an extra column named $col for plugin $plugin.
193 * - th($col, &$class=null) or th()
194 * - td($id, $col=null, &$class=null) or td($id)
198 * @param string $col column name. Assumption: unique between all builtin columns and plugin supplied columns
200 public function addColumn($plugin, $col)
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,
174 addColumn($plugin, $col) global() argument
190 modifyColumn($col, $value) global() argument
697 pluginCell($plugin, $col, $id) global() argument
[all...]
/plugin/edittable/renderer/
H A Djson.php118 $col = $this->current_col;
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;
140 $this->tdata[$row + $r][$col + $c] = '';
146 $this->tmeta[$row + $r][$col]['hide'] = true;
147 $this->tmeta[$row + $r][$col]['rowspan'] = 1;
148 $this->tmeta[$row + $r][$col]['colspan'] = 1;
[all …]
/plugin/doodle2/
H A Ddoodle_template.php44 <?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/
H A Ddoodle_template.php46 <?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>
/plugin/tablefilterjs/
H A Dscript.js6 tablefilterjs.find_th_eq = function( col, $table ) argument
10 if( jQuery(this).text() == col )
22 for( col in filters )
24 if( isNaN( col ) )
26 var eq = tablefilterjs.find_th_eq( col, $table );
31 var eq = parseInt( col ) - 1;
33 var regex = new RegExp( filters[col][0], filters[col][1] );

12345678910>>...16