Home
last modified time | relevance | path

Searched refs:colName (Results 1 – 7 of 7) sorted by relevance

/plugin/struct/meta/
H A DAggregationFilter.php72 $colName = $value->getColumn()->getFullQualifiedLabel();
73 $colValues[$colName]['column'] = $value->getColumn();
74 $colValues[$colName]['label'] = $value->getColumn()->getTranslatedLabel();
75 $colValues[$colName]['values'] ??= [];
94 … $colValues[$colName]['values'] = array_merge($colValues[$colName]['values'], $pairs);
H A DSearchConfigParameters.php210 foreach ($this->filters as $colName => $filter) {
212 $this->searchConfig->addDynamicFilter($colName, $value, $comp, 'AND');
/plugin/statdisplay/pchart/
DpData.php234 public function getXYMap($colName, array &$xIn, array & $yIn, array & $missing, & $index) { argument
241 if (isset ( $this->Data[$Key] [$colName] )) {
242 $Value = $this->Data[$Key] [$colName];
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMetaField.php219 foreach ($defaultRow as $colName => $colMetadata) {
220 if ($colName === null) {
228 $childField = $childFields[$colName];
243 foreach ($row as $colName => $colValue) {
247 $childField = $childFields[$colName];
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataTabular.php256 foreach ($item as $colName => $colValue) {
257 $childClass = $childClassesByPersistentName[$colName] ?? null;
259 … LogUtility::internalError("The column ($colName) does not have a metadata definition");
/plugin/database2/
Ddatabase2.php1483 foreach ( $meta as $colName => $def )
1497 $cols[] = $colName;
1502 foreach ( $meta as $colName => $def )
1504 $cols[] = $colName;
1802 foreach ( $meta as $colName => $def )
1807 $visibleIDCol = ( $colName == $idCol );
1808 else if ( $colName == $idCol )
3520 list( $colName, $rawType, $label, $attributes ) = $parsed;
3529 $colName = preg_replace( '/[^\w]/', '_', $colName );
3531 if ( $out[$colName] )
[all …]
/plugin/botmon/
H A Dadmin.js1913 const colName = columns[i] || `col${i}`;
1914 const colValue = (colName == 'ts' ? new Date(colVal) : colVal.trim());
1915 data[colName] = colValue;