Home
last modified time | relevance | path

Searched refs:col (Results 26 – 50 of 378) sorted by relevance

12345678910>>...16

/plugin/struct/action/
H A Dmove.php68 foreach ($schema->getColumns() as $col) {
70 if (get_class($col->getType()) == Page::class) {
71 $this->updateColumnID($schema, $col, $old, $new, true);
72 } elseif (get_class($col->getType()) == Lookup::class) {
73 $this->updateColumnLookup($schema, $col, $old, $new);
75 } elseif ($col->getType() instanceof Media) {
76 $this->updateColumnID($schema, $col, $old, $new);
144 * @param Column $col
149 protected function updateColumnID(Schema $schema, Column $col, $old, $new, $hashes = false)
151 $colref = $col
152 updateColumnID(Schema $schema, Column $col, $old, $new, $hashes = false) global() argument
193 updateColumnLookup(Schema $schema, Column $col, $old, $new) global() argument
[all...]
/plugin/tbt/
H A Dscript.js18 var col;
50 col = 0;
87 cur_x = 0; col = 0;
99 text[row].splice(col-1,1);
103 col--;
113 if (rowcr) { col=0; cur_x=0; }
118 if (rowcr) { col=0; cur_x=0; }
123 col--;
128 col++;
133 text[row].splice(col,0,recording[currentChar][0]);
[all …]
/plugin/struct/meta/
H A DSchemaEditor.php62 foreach ($this->schema->getColumns() as $col) {
63 $form->addHTML($this->adminColumn($col->getColref(), $col));
110 * @param Column $col
115 protected function adminColumn($column_id, Column $col, $key = 'cols')
119 $class = $col->isEnabled() ? '' : 'disabled';
124 $html .= '<input type="text" name="' . $base . '[sort]" value="' . hsc($col->getSort()) . '" size="3">';
128 $html .= '<input type="text" name="' . $base . '[label]" value="' . hsc($col->getType()->getLabel()) . '">';
132 $checked = $col->getType()->isMulti() ? 'checked="checked"' : '';
137 $config = json_encode($col
113 adminColumn($column_id, Column $col, $key = 'cols') global() argument
[all...]
H A DSearchCloud.php58 $col = $this->columns[0];
59 if ($col->isMulti()) {
60 $multitable = "multi_{$col->getTable()}";
70 $MN.colref = {$col->getColref()}"
73 $col->getType()->select($QB, $MN, 'value', 'tag');
76 $col->getType()->select($QB, $datatable, $col->getColName(), 'tag');
77 $colname = $datatable . '.' . $col->getColName();
H A DCSVPageImporter.php62 function ($keys, Column $col) {
63 if (!in_array($col->getLabel(), $keys, true)) {
66 $index = array_search($col->getLabel(), $keys, true);
67 $keys[$index] = $col->getFullQualifiedLabel();
123 * @param Column $col
127 protected function validateValue(Column $col, &$rawvalue)
130 if ($col->getLabel() == 'pid') {
149 return parent::validateValue($col, $rawvalue);
131 validateValue(Column $col, & $rawvalue) global() argument
H A DAccessTable.php138 foreach ($this->schema->getColumns() as $col) {
139 $this->labels[$col->getColref()] = $col->getType()->getLabel();
215 $this->singleCols[] = 'col' . $colrefs[$colname];
461 foreach ($this->schema->getColumns(false) as $col) {
464 $val = (string) $DBdata[0]['out' . $col->getColref()];
470 if ($col->isMulti()) {
475 $value = new Value($col, $val);
478 if ($this->opt_skipempty && !$col->isVisibleInPage()) continue; //FIXME is this a correct assumption?
482 $data[$col
[all...]
H A DRevisionColumn.php10 * Just like a column, but does not reference one of the col* data columns but the rev column.
50 $col = $this->getColName($enforceSingleColumn);
51 if ($this->table) $col = 'data_' . $this->table . '.' . $col;
52 return $col;
H A DPageColumn.php10 * Just like a column, but does not reference one of the col* data columns but the pid column.
49 $col = $this->getColName($enforceSingleColumn);
50 if ($this->table) $col = 'data_' . $this->table . '.' . $col;
51 return $col;
/plugin/photogallery/phpThumb/
H A Dphpthumb.bmp.php393 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
398 $col++;
410 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col = $col) {
415 $col++;
427 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
440 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
453 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
533 $col = $pixelcounter % $thisfile_bmp_header_raw['width'];
660 for ($col = 0; $col < $thisfile_bmp_header_raw['width']; $col++) {
736 foreach ($colarray as $col => $color) {
[all …]
/plugin/bootswrapper/exe/help/
H A Dthumbnail.txt7 <col xs="6" md="3">
11 </col>
22 </col>
27 </col>
32 </col>
37 </col>
54 </col>
69 </col>
79 </col>
89 </col>
[all …]
/plugin/lastfm/inc/
H A Dlastfmutils.php69 $col = 1;
82 $col = 1;
84 $col++;
111 $col = 1;
122 if($col == $cols) {
124 $col = 1;
126 $col++;
133 $col = 1;
144 if($col == $cols) {
146 $col = 1;
[all …]
/plugin/youtrack/syntax/
H A Dlist.php73 foreach ($cols as $col) {
78 if ($field->attributes()->name == $col) {
85 $issueData[$col] = date($this->getConf('date_format'), $value/1000);
88 $issueData[$col] = $fullname;
90 $issueData[$col] = $value;
95 if ($col == 'ID') {
96 $issueData[$col] = $id;
98 msg('Field "'.$col.'" not found for issue "'.$id.'"', -1);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DTd.php25 $this->mpdf->col++;
27 while (isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col])) {
28 $this->mpdf->col++;
32 if ($this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] < $this->mpdf->col + 1) {
33 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] = $this->mpdf->col + 1;
49 if ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col == 0) {
113 } elseif ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col == 0) {
289 } elseif ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col == 0) {
319 } elseif ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col == 0) {
334 if ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col
[all...]
H A DDotTab.php52 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) {
53 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
54 } elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s']) {
55 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
57 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
H A DBr.php59 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) {
60 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
61 } elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s']) {
62 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
64 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
H A DHr.php109 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) {
110 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
111 } elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s']) {
112 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
114 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
/plugin/structgroupby/syntax/
H A Done.php51 foreach ($data['cols'] as &$col) {
52 $col = trim($col);
54 if (substr($col, 0, strlen($match)) == $match) {
55 $col = substr($col, strlen($match), -1);
56 $sum_col = $col;
/plugin/data-au/syntax/
H A Dcloud.php86 $col = $filter['key'];
89 if(preg_match('/^%(\w+)%$/', $col, $m) && isset($fields[$m[1]])) {
95 if(!$tables[$col]) {
96 $tables[$col] = 'T' . (++$cnt);
97 … $from .= ' LEFT JOIN dataau AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = dataau.pid';
98 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->quote_string($col);
101 … $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] .
/plugin/data/syntax/
H A Dcloud.php95 $col = $filter['key'];
98 if (preg_match('/^%(\w+)%$/', $col, $m) && isset($fields[$m[1]])) {
104 if (!$tables[$col]) {
105 $tables[$col] = 'T' . (++$cnt);
106 $from .= ' LEFT JOIN data AS ' . $tables[$col] . ' ON ' . $tables[$col] . '.pid = data.pid';
107 $from .= ' AND ' . $tables[$col] . ".key = " . $sqlite->getPdo()->quote($col);
110 $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] .
/plugin/struct/types/
H A DDateTime.php107 $col = "$tablealias.$colname";
113 $col = "DATETIME($rightalias.lastrev, 'unixepoch', 'localtime')";
116 $QB->addSelectStatement($col, $alias);
129 $col = "$tablealias.$colname";
135 $col = "DATETIME($rightalias.lastrev, 'unixepoch', 'localtime')";
146 $add->where($op, "$col $comp $pl");
160 $col = "$tablealias.$colname";
165 $col = "$rightalias.lastrev";
168 $QB->addOrderBy("$col $order");
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DDatamatrix.php303 $grid[$row][$col] = 1;
306 $grid[$row][$col] = 1;
976 if ($col < 0) {
977 $col += $ncol;
1110 $col = 0;
1131 if (($row < $nrow) AND ($col >= 0) AND (!$marr[(($row * $ncol) + $col)])) {
1136 $col += 2;
1139 $col += 3;
1142 if (($row >= 0) AND ($col < $ncol) AND (!$marr[(($row * $ncol) + $col)])) {
1147 $col -= 2;
[all …]
/plugin/youtrack/
H A Dhelper.php251 foreach($cols as $col) {
253 $R->cdata($col);
264 foreach($cols as $col) {
266 if ($col == 'ID') {
267 $R->externallink($this->getIssueUrl($issue[$col]), $issue[$col]);
269 $R->cdata($issue[$col]);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-l…
/plugin/mdpage/vendor/cebe/markdown/block/
H A DTableTrait.php44 foreach($cols as $col) {
45 $col = trim($col);
46 if (empty($col)) {
50 $l = ($col[0] === ':');
51 $r = (substr($col, -1, 1) === ':');
/plugin/mathpublish/phpmathpublisher/
H A DMathExpression.php596 for ($col = 0; $col < $nbColumn; $col++) {
597 $widthColumn[$col] = 0;
601 for ($col = 0; $col < $nbColumn; $col++) {
610 $widthColumn[$col] = max($widthColumn[$col], $width[$i]);
621 for ($col = 0; $col < $nbColumn; $col++) {
633 for ($col = 0; $col < $nbColumn; $col++) {
680 for ($col = 0; $col < $nbColumn; $col++) {
685 for ($col = 0; $col < $nbColumn; $col++) {
694 $widthColumn[$col] = max($widthColumn[$col], $width[$i]);
705 for ($col = 0; $col < $nbColumn; $col++) {
[all …]

12345678910>>...16