mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-01 04:36:10 +01:00
commit
48a0e16bc8
4 changed files with 18 additions and 13 deletions
|
@ -41,14 +41,7 @@ class RelationResolver implements Singleton
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$record[$column] = GeneralUtility::makeInstance($this->getUtilityForMode())
|
$record[$column] = $this->getColumnValue($record, $column, $service);
|
||||||
::getProcessedValueExtra(
|
|
||||||
$service->getTableName(),
|
|
||||||
$column,
|
|
||||||
$record[$column],
|
|
||||||
0,
|
|
||||||
$record['uid']
|
|
||||||
);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$config = $service->getColumnConfig($column);
|
$config = $service->getColumnConfig($column);
|
||||||
|
@ -107,4 +100,16 @@ class RelationResolver implements Singleton
|
||||||
|
|
||||||
return FrontendUtility::class;
|
return FrontendUtility::class;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function getColumnValue(array $record, string $column, TcaTableServiceInterface $service): string
|
||||||
|
{
|
||||||
|
$utility = GeneralUtility::makeInstance($this->getUtilityForMode());
|
||||||
|
return $utility::getProcessedValueExtra(
|
||||||
|
$service->getTableName(),
|
||||||
|
$column,
|
||||||
|
$record[$column],
|
||||||
|
0,
|
||||||
|
$record['uid']
|
||||||
|
) ?? '';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,9 +59,9 @@ author = u'Daniel Siepmann'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = u'0.0.4'
|
version = u'0.0.6'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = u'0.0.4'
|
release = u'0.0.6'
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#
|
#
|
||||||
|
@ -132,7 +132,7 @@ html_theme_options = {
|
||||||
|
|
||||||
# The name for this set of Sphinx documents.
|
# The name for this set of Sphinx documents.
|
||||||
# "<project> v<release> documentation" by default.
|
# "<project> v<release> documentation" by default.
|
||||||
#html_title = u'TYPO3 Extension search_core v0.0.4'
|
#html_title = u'TYPO3 Extension search_core v0.0.6'
|
||||||
|
|
||||||
# A shorter title for the navigation bar. Default is the same as html_title.
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
||||||
#html_short_title = None
|
#html_short_title = None
|
||||||
|
|
|
@ -9,7 +9,7 @@ Composer
|
||||||
|
|
||||||
The extension can be installed through composer::
|
The extension can be installed through composer::
|
||||||
|
|
||||||
composer require "codappix/search_core" "~0.0.4"
|
composer require "codappix/search_core" "~0.0.6"
|
||||||
|
|
||||||
Note that you have to allow unstable packages:
|
Note that you have to allow unstable packages:
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'state' => 'beta',
|
'state' => 'beta',
|
||||||
'version' => '0.0.4',
|
'version' => '0.0.6',
|
||||||
'author' => 'Daniel Siepmann',
|
'author' => 'Daniel Siepmann',
|
||||||
'author_email' => 'coding@daniel-siepmann.de',
|
'author_email' => 'coding@daniel-siepmann.de',
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue