| /plugin/struct/meta/ |
| H A D | SearchConfigParameters.php | 61 * @param string|Column $column 64 protected function resolveColumn($column) argument 66 if (!is_a($column, Column::class)) { 67 $column = $this->searchConfig->findColumn($column); 68 if (!$column) return false; 71 return $column->getFullQualifiedLabel(); 77 * @param string|Column $column 80 public function setSort($column, $asc = true) argument 82 $column = $this->resolveColumn($column); 83 if (!$column) return; [all …]
|
| H A D | Value.php | 15 protected $column; variable in dokuwiki\\plugin\\struct\\meta\\Value 35 * @param Column $column 38 public function __construct(Column $column, $value) argument 40 $this->column = $column; 49 return $this->column; 127 $raw = $this->column->getType()->rawValue($val); 136 $this->display[] = $this->column->getType()->displayValue($val); 137 $this->compare[] = $this->column->getType()->compareValue($val); 142 if (!$this->column->isMulti()) { 173 if ($this->column->isMulti()) { [all …]
|
| H A D | SchemaBuilder.php | 114 if (isset($this->data['cols'])) foreach ($this->data['cols'] as $idx => $column) { 115 $this->data['cols'][$idx]['label'] = $this->fixLabel($column['label'], $labels); 118 if (isset($this->data['new'])) foreach ($this->data['new'] as $idx => $column) { 119 $this->data['new'][$idx]['label'] = $this->fixLabel($column['label'], $labels); 170 foreach ($this->oldschema->getColumns() as $column) { 171 $oldEntry = $column->getType()->getAsEntry(); 172 $oldTid = $column->getTid(); 175 $sort = $column->getSort(); 176 if (isset($this->data['cols'][$column->getColref()])) { 179 $newEntry['config'] = $this->data['cols'][$column->getColref()]['config']; [all …]
|
| H A D | SchemaImporter.php | 60 foreach ($input['columns'] as $column) { 62 $column['config'] = json_encode($column['config'], JSON_PRETTY_PRINT); 64 if (!empty($column['colref']) && $column['colref'] <= $existing) { 66 $data['cols'][$column['colref']] = $column; 69 $data['new'][] = $column;
|
| /plugin/struct/types/ |
| H A D | Lookup.php | 26 protected $column; variable in dokuwiki\\plugin\\struct\\types\\Lookup 49 if ($this->column instanceof Column) return $this->column; 50 $this->column = $this->getColumn($this->config['schema'], $this->config['field']); 51 return $this->column; 74 $column = $table->findColumn($field); 75 if (!$column) { 77 $column = $table->findColumn($field); 79 if (!$column) { 81 $column = new PageColumn(0, new Page(), $table); 84 $column = new PageColumn(0, new Page(['usetitles' => true]), $table); [all …]
|
| /plugin/structjoin/types/ |
| D | Join.php | 27 $column = $this->getLookupColumn(); 28 if(!$column) return false; 29 return $column->getType()->renderValue($value, $R, $mode); 41 $column = $this->getLookupColumn(); 42 if(!$column) return false; 43 return $column->getType()->renderMultiValue($values, $R, $mode); 59 $column = $this->getLookupColumn(); 60 if($column) { 61 return $column->getType()->displayValue($value); 77 $column = $this->getLookupColumn(); [all …]
|
| /plugin/asciidocjs/node_modules/pug-parser/ |
| D | index.js | 55 column: token.loc.start.column, property 290 column: tok.loc.start.column, property 303 column: tok.loc.start.column, property 316 column: tok.loc.start.column, property 351 column: text.loc.start.column, property 414 column: tok.loc.start.column, property 459 column: tok.loc.start.column, 468 column: tok.loc.start.column, 486 column: tok.loc.start.column, 505 column: tok.loc.start.column, property [all …]
|
| /plugin/datatables/assets/datatables.net-buttons/css/ |
| D | mixins.scss | 34 &.two-column { 38 &.three-column { 42 &.four-column { 47 // Four column 69 &.two-column > :last-child, 70 &.three-column > :last-child, 71 &.four-column > :last-child { 73 -webkit-column-break-inside: avoid; 77 // Multi-column layout feature 79 -webkit-column-gap: 8px; [all …]
|
| /plugin/bez/mdl/ |
| H A D | Acl.php | 26 foreach($columns as $column) { 27 if (!array_key_exists($column, $this->acl)) { 28 throw new \Exception("column: $column not exists in table"); 31 if ($this->acl[$column] < $perm) { 32 $this->acl[$column] = $perm; 40 foreach ($columns as $column) { 42 $this->acl[$column] = BEZ_PERMISSION_NONE; 55 public function add_column($column, $perm=BEZ_PERMISSION_NONE) { argument 56 if (isset($this->acl[$column])) { 60 $this->acl[$column] = $perm;
|
| /plugin/projects/plugins/target/ |
| D | plot.php | 67 foreach ($this->plot->columns() as $column => $name) { 68 if ($column != $x_column + 1) $columns[] = $column - 1; 69 $all_columns[] = $column - 1; 73 foreach ($columns as $column) { 74 $name = $this->plot->column($column + 1); 75 $data->AddSerie('Serie' . $column); 76 $data->SetSerieName($name, "Serie" . $column); 81 foreach ($columns as $column) { 82 $point = $record['Serie' .$column]; 85 $max_col = $column; [all …]
|
| /plugin/columns/ |
| D | action.php | 225 private $column; variable in columns_block 235 $this->column = array(); 255 $this->column[] = $this->currentColumn; 298 $columns = count($this->column); 300 $call =& $event->data->calls[$this->column[$c]->getOpenCall()]; 303 $this->column[0]->addAttribute('columns', $columns); 304 $this->column[0]->addAttribute('class', 'first'); 309 $this->column[$c]->addAttribute('class', 'last'); 312 $this->column[$c]->addAttribute('block-id', $this->id); 313 $this->column[$c]->addAttribute('column-id', $c + 1); [all …]
|
| /plugin/asciidocjs/node_modules/pug-error/ |
| D | index.js | 6 var column = options.column; 10 var location = line + (column ? ':' + column : ''); 22 if (curr === line && column > 0) { 24 out += Array(preamble.length + column).join('-') + '^'; 36 err.column = column; 44 column: this.column,
|
| /plugin/asciidocjs/node_modules/clean-css/lib/reader/ |
| D | input-source-map-tracker.js | 24 var column = metadata[1]; 28 column: column + range property 32 while (!originalPosition && position.column > column) { 33 position.column--; 37 if (!originalPosition || originalPosition.column < 0) { 42 return originalPositionFor(maps, [line - 1, column, source], range, selectorFallbacks - 1); 51 return [asHash.line, asHash.column, asHash.source];
|
| /plugin/asciidocjs/node_modules/handlebars/lib/handlebars/ |
| D | exception.js | 16 column, 22 column = loc.start.column; 23 endColumn = loc.end.column; 25 message += ' - ' + line + ':' + column; 49 value: column, 57 this.column = column;
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/ |
| D | CatNamespace.asciidoc | 58 $params['h'] = (list) Comma-separated list of column names to display 60 $params['s'] = (list) Comma-separated list of column names or column aliases to sort… 61 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) 80 $params['h'] = (list) Comma-separated list of column names to display 82 $params['s'] = (list) Comma-separated list of column names or column aliases to sort by 83 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) 98 $params['h'] = (list) Comma-separated list of column names to display 100 $params['s'] = (list) Comma-separated list of column names or column aliases to sort by 101 $params['v'] = (boolean) Verbose mode. Display column headers (Default = false) 117 $params['h'] = (list) Comma-separated list of column names to display [all …]
|
| /plugin/struct/helper/ |
| H A D | field.php | 21 public $column; variable in helper_plugin_struct_field 34 $this->column = $this->findColumn($this->opt['label']); 50 if (!$this->column) { 55 $this->error = !$validator->validateValue($this->column, $value); 66 if ($this->column) { 67 $label = $this->column->getTranslatedLabel(); 88 if (!$this->column) return; 118 if (!empty($value) && $this->column->getType() instanceof User) { 143 if (!empty($value) && $this->column->getType() instanceof User) { 162 $preparedValue = $this->opt['value'] ?? ($this->column->isMulti() ? [] : ''); [all …]
|
| /plugin/latexport/implementation/ |
| D | decorator_tables.php | 64 private $column; variable in DecoratorTables 127 $this->column = 0; 176 $cell = $this->row[$this->column]; 182 $this->column += $numberOfPlaceholders; 185 $this->row[$this->column]->setSize($colspan, $rowspan); 186 $this->column += $colspan; 192 $column = 0; 195 $cell = $this->row[$column]; 198 $starts = $column + 1; 203 $this->decorator->table_cline($starts, $column); [all …]
|
| /plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/ |
| D | exception.js | 10 column = undefined, 16 column = loc.start.column; 17 endColumn = loc.end.column; 19 message += ' - ' + line + ':' + column; 43 value: column, 51 this.column = column;
|
| /plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/ |
| D | exception.js | 10 column = undefined, 16 column = loc.start.column; 17 endColumn = loc.end.column; 19 message += ' - ' + line + ':' + column; 43 value: column, 51 this.column = column;
|
| /plugin/wrap/ |
| D | all.less | 90 -moz-column-gap: 1.5em; 91 -webkit-column-gap: 1.5em; 92 column-gap: 1.5em; 93 -moz-column-rule: 1px dotted #666; 94 -webkit-column-rule: 1px dotted #666; 95 column-rule: 1px dotted #666; 98 -moz-column-count: 2; 99 -webkit-column-count: 2; 100 column-count: 2; 103 -moz-column-count: 3; [all …]
|
| /plugin/findologicxmlexport/vendor/hoa/compiler/Exception/ |
| D | IllegalToken.php | 54 protected $column = 0; variable in Hoa\\Compiler\\Exception\\IllegalToken 65 * @param int $column Column. 67 public function __construct($message, $code, $arg, $line, $column) argument 72 $this->column = $column; 84 return $this->column;
|
| D | UnrecognizedToken.php | 54 protected $column = 0; variable in Hoa\\Compiler\\Exception\\UnrecognizedToken 65 * @param int $column Column. 67 public function __construct($message, $code, $arg, $line, $column) argument 72 $this->column = $column; 84 return $this->column;
|
| /plugin/asciidocjs/node_modules/source-map/lib/ |
| D | source-node.js | 39 this.column = aColumn == null ? null : aColumn; 232 column: this.column, property 334 column: 0 property 346 && original.column !== null) { 349 || lastOriginalColumn !== original.column 355 column: original.column property 359 column: generated.column property 366 lastOriginalColumn = original.column; 373 column: generated.column property 382 generated.column = 0; [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/lib/ |
| D | source-node.js | 39 this.column = aColumn == null ? null : aColumn; 232 column: this.column, property 334 column: 0 property 346 && original.column !== null) { 349 || lastOriginalColumn !== original.column 355 column: original.column property 359 column: generated.column property 366 lastOriginalColumn = original.column; 373 column: generated.column property 382 generated.column = 0; [all …]
|
| /plugin/database2/ |
| D | media.php | 85 list( $pageID, $ioIndex, $column ) = $source; 87 $session = $_SESSION['database2'][$pageID]['tables'][$ioIndex]['editors'][$column]; 115 list( $dsn, $authSlot, $table, $column, $idColumn, $rowid, $pageID, 166 final public function getMedia( $column, $idColumn, $rowid ) argument 169 $column = trim( $column ); 173 if ( !self::isValidName( $column ) || 178 $st = $this->getLink()->prepare( 'SELECT ' . $column . 254 foreach ( $meta as $column => $def ) 256 $cols[$column] = $column; 263 foreach ( $header as $column => $data ) [all …]
|