$this->loaded[$method_name] = & ${$method_name};
// Add vars injected from controller
${$method_name}->__services = $this->__services;
// Pass View vars to Helper Object
foreach ( $this->__passedVars AS $key )
{
}
// Finds the view file
$viewPath = $this->locateThemeFile($action,$file,$this->ext,$this->frontend);
$out = $this->_render($viewPath, $this->viewVars);
# Set layout file
if ($layout === null) {
$layout = $this->layout;
}
$view = new MyView($this);
$out = $view
->changeExtension($this->theme_extension)
->forceFrontend($this->frontend)
->render($folder, $file, $layout);
// Restore controller variable values
foreach ( ['name','action','viewSuffix'] AS $var )
{
if ($output)
{
return $output;
}
return parent::render($folder, $template, $layout);
}
/**
* This callback can be used to inject assets to the head of the page from within Add-ons while also providing access
* to the controller::viewVars array. Use S2Component::plgBeforeAfterFilter method.
}
// Remove parameters added through menu custom params so they are not used in pagination
$this->passedArgs = array_diff_key($this->passedArgs, $this->customParamsArray);
return $this->render('listings','listings_' . $this->listview);
}
public function compareCatchAll()
{
$this->action = 'compare';
{
$out = $this->liveSearchResults();
}
else {
$out = $this->listings();
}
return $out;
}
// If macroable controller method exists, then use that instead of the core method
$action = $macroableController && $controller->hasMacro($controller->action.'_override') ? $controller->action.'_override' : $controller->action;
$output = $controller->{$action}($this->params);
}
$controller->output = &$output;
# Instantiate view class and let it handle ouput
if (isset($dispatchParams[$key]) && !$dispatchParams[$key]) {
unset($dispatchParams[$key]);
}
}
echo $Dispatcher->dispatch($dispatchParams);
unset($menu,$Dispatcher);
}
function JReviewsRouteActionsMap($action)
return;
}
$this->app['router']->any('{any}', function () {
require_once __DIR__.'/web-legacy-'._CMS_NAME.'.php';
return JReviewsLegacyRouting($this->app['request']->server->get('REQUEST_URI'));
})->where('any', '(.*)');
{
$callable = $this->action['uses'];
if ($this->isSerializedClosure()) {
$callable = \unserialize($this->action['uses'])->getClosure();
}
return $callable(...\array_values($this->resolveMethodDependencies($this->parametersWithoutNulls(), new \ReflectionFunction($callable))));
}
/**
* Determine if the route action is a serialized Closure.
*
* @return bool
$this->container = $this->container ?: new \FWD\Illuminate\Container\Container();
try {
if ($this->isControllerAction()) {
return $this->runController();
}
return $this->runCallable();
} catch (\FWD\Illuminate\Http\Exceptions\HttpResponseException $e) {
return $e->getResponse();
}
}
/**
protected function runRouteWithinStack(\FWD\Illuminate\Routing\Route $route, \FWD\Illuminate\Http\Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === \true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new \FWD\Illuminate\Routing\Pipeline($this->container))->send($request)->through($middleware)->then(function ($request) use($route) {
return $this->prepareResponse($request, $route->run());
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
*/
protected function prepareDestination(\Closure $destination)
{
return function ($passable) use($destination) {
try {
return $destination($passable);
} catch (\Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
if ($route->getMissing()) {
return $route->getMissing()($request, $exception);
}
throw $exception;
}
return $next($request);
}
}
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = \method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (\Throwable $e) {
return $this->handleException($passable, $e);
}
};
* @return mixed
*/
public function then(\Closure $destination)
{
$pipeline = \array_reduce(\array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
protected function runRouteWithinStack(\FWD\Illuminate\Routing\Route $route, \FWD\Illuminate\Http\Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') && $this->container->make('middleware.disable') === \true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new \FWD\Illuminate\Routing\Pipeline($this->container))->send($request)->through($middleware)->then(function ($request) use($route) {
return $this->prepareResponse($request, $route->run());
});
}
/**
* Gather the middleware for the given route with resolved class names.
{
$request->setRouteResolver(function () use($route) {
return $route;
});
$this->events->dispatch(new \FWD\Illuminate\Routing\Events\RouteMatched($route, $request));
return $this->prepareResponse($request, $this->runRouteWithinStack($route, $request));
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function dispatchToRoute(\FWD\Illuminate\Http\Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function dispatch(\FWD\Illuminate\Http\Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
*/
protected function prepareDestination(\Closure $destination)
{
return function ($passable) use($destination) {
try {
return $destination($passable);
} catch (\Throwable $e) {
return $this->handleException($passable, $e);
}
};
}
*/
public function handle($request, \Closure $next)
{
// Check if we're dealing with CORS and if we should handle it
if (!$this->shouldRun($request)) {
return $next($request);
}
// For Preflight, return the Preflight response
if ($this->cors->isPreflightRequest($request)) {
$response = $this->cors->handlePreflightRequest($request);
$this->cors->varyHeader($response, 'Access-Control-Request-Method');
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = \method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (\Throwable $e) {
return $this->handleException($passable, $e);
}
};
* @return mixed
*/
public function then(\Closure $destination)
{
$pipeline = \array_reduce(\array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination));
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
\FWD\Illuminate\Support\Facades\Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new \FWD\Illuminate\Routing\Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (\Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(new \FWD\Illuminate\Foundation\Http\Events\RequestHandled($request, $response));
function s2_dispatch()
{
$app = fwd_app();
$request = fwd_request();
$kernel = $app->get('kernel');
$response = $kernel->handle($request);
if ($app->has('response_headers')) {
$response->withHeaders($app->make('response_headers'));
}
if ($response->getStatusCode() === 204) {
$response->send();
defined('_JEXEC') or die;
require_once JPATH_SITE.'/components/com_jreviews/jreviews/framework.php';
s2framework\s2_dispatch();
if (! static::throw_s2framework_error()) {
return;
}
}
require __DIR__.DS.'jreviews'.DS.'cms_compat'.DS.'joomla'.DS.'bootloader.php';
}
public static function s2framework_is_not_active()
{
if (defined('S2FRAMEWORK_BOOTED')) {
require_once __DIR__."/{$cmsName}.php";
$jreviews = new JReviews\JReviews();
$jreviews(__FILE__);
// Load common and local language files.
$lang->load($this->app->scope, JPATH_BASE) || $lang->load($this->app->scope, JPATH_COMPONENT);
// Execute the component
$loader = static function ($path) {
require_once $path;
};
$loader($path);
}
}
// Execute the component
$loader = static function ($path) {
require_once $path;
};
$loader($path);
}
}
if (!static::isEnabled($option)) {
throw new MissingComponentException(Text::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404);
}
ob_start();
$app->bootComponent($option)->getDispatcher($app)->dispatch();
$contents = ob_get_clean();
// Revert the scope
$app->scope = $scope;
$document->setGenerator('Joomla! - Open Source Content Management - Version ' . JVERSION);
} else {
$document->setGenerator('Joomla! - Open Source Content Management');
}
$contents = ComponentHelper::renderComponent($component);
$document->setBuffer($contents, 'component');
// Trigger the onAfterDispatch event.
PluginHelper::importPlugin('system');
$this->triggerEvent('onAfterDispatch');
*/
$this->checkUserRequireReset('com_users', 'profile', 'edit', 'com_users/profile.save,com_users/profile.apply,com_users/user.logout');
}
// Dispatch the application
$this->dispatch();
// Mark afterDispatch in the profiler.
JDEBUG ? $this->profiler->mark('afterDispatch') : null;
}
$this->sanityCheckSystemVariables();
$this->setupLogging();
$this->createExtensionNamespaceMap();
// Perform application routines.
$this->doExecute();
// If we have an application document object, render it.
if ($this->document instanceof \Joomla\CMS\Document\Document) {
// Render the application output.
$this->render();
// Set the application as global app
\Joomla\CMS\Factory::$application = $app;
// Execute the application.
$app->execute();
* define() is used rather than "const" to not error for PHP 5.2 and lower
*/
define('_JEXEC', 1);
// Run the application - All executable code should be triggered through this file
require_once dirname(__FILE__) . '/includes/app.php';
Error
|
---|
Error: Attempt to assign property "__services" on bool at /www/htdocs/w00e5bfa/components/com_s2framework/s2framework/libs/view/view.php:376 at MyView->_render('/www/htdocs/w00e5bfa/templates/jreviews_overrides/views/themes/bonvinitas/listings/listings_blogview.thtml', array('page' => array('title' => 'Aldi Süd', 'menu_title' => 'Erweiterte Suche', 'seo_title' => '', 'top_description' => '', 'show_title' => '1', 'menuParams' => array('action' => '11', 'criteriaid' => '0', 'tmpl_suffix' => '', 'menu-anchor_title' => '', 'menu-anchor_css' => '', 'menu_image' => '', 'menu_text' => 1, 'page_title' => '', 'show_page_heading' => 0, 'page_heading' => '', 'pageclass_sfx' => '', 'menu-meta_description' => '', 'menu-meta_keywords' => '', 'robots' => '', 'secure' => 0), 'title_seo' => 'Aldi Süd', 'show_description' => '1'), 'show_map' => false, 'search_itemid' => 563, 'themeDebug' => false, 'addonPosition' => array('below-fields' => array(), 'below-description' => array(), 'below-socialbookmarks' => array(), 'below-bottommedia' => array(), 'below-editorreviews' => array(), 'below-userreviews' => array()), 'captcha' => '', 'listingListLayoutSettings' => array('layoutSwitcher' => true), 'subclass' => 'listing', 'directory' => array(), 'category' => array(), 'categories' => array(), 'parent_categories' => array(), 'cat_id' => 0, 'listings' => array(array('Listing' => array('listing_id' => 8805, 'slug' => '2019-rose-pinot-noir', 'title' => '2019 Rosé Pinot Noir ', 'summary' => '', 'description' => '<span style="color: #333333; font-family: \'Droid Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 14px;">Schöne Lachsfarbe; in der Nase Noten von Erdbeeren, Hagebutten, Zitronengelee; auf der Zunge ein süffiger Wein, der einen anspringt, mit dezent süßen Untertönen; anregendes Finish, in dem die dezenten Untertöne lange nachhallen; ein Wein wie eine Frühlingswiese zum frisch und jung Genießen. Schön zu Gemüsegratin, Grillsteaks oder für laue Frühlings- oder Sommerabende.</span>', 'images' => '', 'hits' => 1044, 'cat_id' => 22, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-10 09:53:44', 'modified' => '2020-03-13 10:43:40', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-10 09:53:44', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertung, 86 Punkte für 2019 Rosé Pinot Noir, Weingut Leitz, Rheinhessen, Aldi, Wein, Weinbewertung, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertung, 86 Punkte für 2019 Rosé Pinot Noir, Weingut Leitz, Rheinhessen. Zu beziehen bei Aldi', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-10 09:53:44', 'modified_UTC' => '2020-03-13 10:43:40', 'publish_up_UTC' => '2020-03-10 09:53:44', 'url' => 'index.php?option=com_content&view=article&id=8805:2019-rose-pinot-noir&catid=22:trocken-bis-12-prozent'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 22, 'title' => '1 - Trockene Weine, bis 12 % Alkohol', 'slug' => 'trocken-bis-12-prozent', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '86.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '86.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('1-trocken-bis-12'), 'text' => array('1 - trocken, bis einschließlich 12 Vol.% Alkohol - grüne Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('rosé'), 'text' => array('Rosé'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('id' => 12, 'group_id' => 5, 'name' => 'jr_geschmack', 'type' => 'select', 'title' => 'Geschmack', 'description' => '', 'value' => array('trocken'), 'text' => array('trocken'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('deutschland'), 'text' => array('Deutschland'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('rheinhessen'), 'text' => array('Rheinhessen'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('id' => 11, 'group_id' => 5, 'name' => 'jr_rebsorten', 'type' => 'selectmultiple', 'title' => 'Rebsorte', 'description' => 'Rebsorte', 'value' => array('pinot-noir'), 'text' => array('Pinot Noir'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('deutscher-qualitätswein'), 'text' => array('Deutscher Qualitätswein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('id' => 6, 'group_id' => 5, 'name' => 'jr_erzeuger', 'type' => 'select', 'title' => 'Erzeuger', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'value' => array('leitz-weingut'), 'text' => array('Leitz, Weingut'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_weinerzeugerportrait' => array('id' => 173, 'group_id' => 5, 'name' => 'jr_weinerzeugerportrait', 'type' => 'relatedlisting', 'title' => 'Erzeugerportrait', 'description' => 'Für Verknüpfung zum Portrait. Tippen für Vorschläge. Portrait muss zuerst angelegt sein. Für Anzeige auf Detailseite.', 'value' => array('/fr/?view=article&id=8804:weingut-leitz-kg&catid=24:weinadressen'), 'text' => array('Weingut Leitz KG'), 'real_value' => array('8804'), 'ratings' => array(array('user_rating' => '0.0000', 'editor_rating' => '0.0000', 'user_rating_count' => 0, 'editor_rating_count' => 0)), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => 1, 'listing_type' => '24', 'listing_type_owner' => '0', 'listing_order' => 'rdate', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => 1, 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'output_format' => '<a href="{optionvalue}" title="Mehr Informationen zu {fieldtext}">{fieldtext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('weingut-leitz'), 'text' => array('Weingut Leitz'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd "Exquite Collection", ab ca. Mitte April 2020 erhältlich, zuletzt VKP € 4,99'), 'text' => array('Aldi Süd "Exquite Collection", ab ca. Mitte April 2020 erhältlich, zuletzt VKP € 4,99'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('1-trocken-bis-12'), 'text' => array('1 - trocken, bis einschließlich 12 Vol.% Alkohol - grüne Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('rosé'), 'text' => array('Rosé'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('field_id' => 12, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_geschmack', 'title' => 'Geschmack', 'value' => array('trocken'), 'text' => array('trocken'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('deutschland'), 'text' => array('Deutschland'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('rheinhessen'), 'text' => array('Rheinhessen'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('field_id' => 11, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_rebsorten', 'title' => 'Rebsorte', 'value' => array('pinot-noir'), 'text' => array('Pinot Noir'), 'image' => array(''), 'type' => 'selectmultiple', 'description' => 'Rebsorte', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('deutscher-qualitätswein'), 'text' => array('Deutscher Qualitätswein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('field_id' => 6, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeuger', 'title' => 'Erzeuger', 'value' => array('leitz-weingut'), 'text' => array('Leitz, Weingut'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_weinerzeugerportrait' => array('field_id' => 173, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinerzeugerportrait', 'title' => 'Erzeugerportrait', 'value' => array('/fr/?view=article&id=8804:weingut-leitz-kg&catid=24:weinadressen'), 'text' => array('Weingut Leitz KG'), 'real_value' => array('8804'), 'ratings' => array(array('user_rating' => '0.0000', 'editor_rating' => '0.0000', 'user_rating_count' => 0, 'editor_rating_count' => 0)), 'image' => array(''), 'type' => 'relatedlisting', 'description' => 'Für Verknüpfung zum Portrait. Tippen für Vorschläge. Portrait muss zuerst angelegt sein. Für Anzeige auf Detailseite.', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => 1, 'listing_type' => '24', 'listing_type_owner' => '0', 'listing_order' => 'rdate', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => 1, 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'output_format' => '<a href="{optionvalue}" title="Mehr Informationen zu {fieldtext}">{fieldtext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('weingut-leitz'), 'text' => array('Weingut Leitz'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd "Exquite Collection", ab ca. Mitte April 2020 erhältlich, zuletzt VKP € 4,99'), 'text' => array('Aldi Süd "Exquite Collection", ab ca. Mitte April 2020 erhältlich, zuletzt VKP € 4,99'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2019 Rosé Pinot Noir '), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '86.0000', 'ratings' => array('86.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8798, 'slug' => '2017-esprit-barville', 'title' => '2017 Esprit Barville ', 'summary' => '', 'description' => 'Tiefes Rot; schön ausgewogener Duft nach Johannisbeergelee, Brombeeren, gebrannten Mandeln; ebenso runder, schön ausgewogener Körper mit Frucht, Schmelz und sanft pfeffrigen Noten, die im Finish in sanfte Tannine münden mit schön eingebundener Frucht. Ein Wein wie eine Pferdedroschke, mit drei bis vier Jahren weiterem Potenzial und schön zu Salatplatten, Pizza oder Putensteak.', 'images' => '', 'hits' => 1426, 'cat_id' => 21, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-10 09:27:42', 'modified' => '2020-03-13 10:44:27', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-10 09:27:42', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertungen, Punkte, Esprit Barville, Brott, Frankreich, Rotwein, Côtes du Rhone, Wein, Aldi, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertungen: 84 Punkte für 2017 Esprit Barville, Maisson Brott, Frankreich', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-10 09:27:42', 'modified_UTC' => '2020-03-13 10:44:27', 'publish_up_UTC' => '2020-03-10 09:27:42', 'url' => 'index.php?option=com_content&view=article&id=8798:2017-esprit-barville&catid=21:trocken-ueber-12-prozent'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 21, 'title' => '2 - Trockene Weine, über 12 % Alkohol', 'slug' => 'trocken-ueber-12-prozent', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '84.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '84.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('frankreich'), 'text' => array('Frankreich'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('cotes-du-rhone'), 'text' => array('Cotes du Rhone'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_lage' => array('id' => 15, 'group_id' => 5, 'name' => 'jr_lage', 'type' => 'select', 'title' => 'Lage', 'description' => '', 'value' => array('rhone-valley'), 'text' => array('Rhone Valley'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2017'), 'text' => array('2017'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('aoc'), 'text' => array('AOC'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('145'), 'text' => array('14,5'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('id' => 6, 'group_id' => 5, 'name' => 'jr_erzeuger', 'type' => 'select', 'title' => 'Erzeuger', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'value' => array('maisson-brott'), 'text' => array('Maisson Brott'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('maisson-brott'), 'text' => array('Maisson Brott'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd "Exquite Collection", voraussichtlich wieder ab ca. Mitte August 2020 erhältlich, zuletzt € 4,99'), 'text' => array('Aldi Süd "Exquite Collection", voraussichtlich wieder ab ca. Mitte August 2020 erhältlich, zuletzt € 4,99'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('frankreich'), 'text' => array('Frankreich'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('cotes-du-rhone'), 'text' => array('Cotes du Rhone'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_lage' => array('field_id' => 15, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_lage', 'title' => 'Lage', 'value' => array('rhone-valley'), 'text' => array('Rhone Valley'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2017'), 'text' => array('2017'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('aoc'), 'text' => array('AOC'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('145'), 'text' => array('14,5'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('field_id' => 6, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeuger', 'title' => 'Erzeuger', 'value' => array('maisson-brott'), 'text' => array('Maisson Brott'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('maisson-brott'), 'text' => array('Maisson Brott'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd "Exquite Collection", voraussichtlich wieder ab ca. Mitte August 2020 erhältlich, zuletzt € 4,99'), 'text' => array('Aldi Süd "Exquite Collection", voraussichtlich wieder ab ca. Mitte August 2020 erhältlich, zuletzt € 4,99'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2017 Esprit Barville '), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '84.0000', 'ratings' => array('84.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8796, 'slug' => '2018-blend-portugal', 'title' => '2018 Blend Portugal ', 'summary' => '', 'description' => '<span style="text-decoration: underline; color: #0000ff;"><span style="color: #333333; font-family: \'Droid Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 14px;"></span></span><span style="color: #0000ff;"><span style="color: #333333; font-family: \'Droid Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 14px;">Tiefes lebendiges Rot mit lila Reflexen; fruchtiger Duft nach Marmelade von dunklen Waldbeeren und Schokoladadentrüffel; eleganter, sehr eingängiger Körper – macht Spaß – mit Schokoladentönen im Untergrund, die einen im Finish leicht schnalzen lassen und gleich zum nächsten Schluck verführen. Ein Wein wie ein fröhlicher Jahrmarkt mit bis zu vier Jahren Potenzial. Ich würde mit dem Genießen jedoch nicht zu lange warten, damit er seine Fröhlichkeit behält. Passt gut zu Bratwurst oder Pfeffersteak sowie auch zu einem schönen lauen Frühlings- oder Sommerabend.</span></span><span style="text-decoration: underline; color: #0000ff;"><br /></span>', 'images' => '', 'hits' => 1694, 'cat_id' => 47, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-09 10:58:02', 'modified' => '2020-03-13 10:44:56', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-09 10:58:02', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertung, 87 Punkte, 2018 Blend Portugal, Casa Santos Lima, Portugal, Wein, Aldi, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertung: 87 Punkte für 2018 Blend Portugal, Casa Santos Lima, Portugal', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-09 10:58:02', 'modified_UTC' => '2020-03-13 10:44:56', 'publish_up_UTC' => '2020-03-09 10:58:02', 'url' => 'index.php?option=com_content&view=article&id=8796:2018-blend-portugal&catid=47:feinherb-und-mild'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 47, 'title' => ' 3 - Feinherbe bis milde Weine', 'slug' => 'feinherb-und-mild', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '87.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '87.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('3-halbtrocken-liblich'), 'text' => array('3 - feinherb bis mild (Weine mit über 9 g/l Restzucker) - orange Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('id' => 12, 'group_id' => 5, 'name' => 'jr_geschmack', 'type' => 'select', 'title' => 'Geschmack', 'description' => '', 'value' => array('halbtrocken'), 'text' => array('halbtrocken'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('portugal'), 'text' => array('Portugal'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('vinho-regional-lisboa'), 'text' => array('Vinho Regional Lisboa'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('id' => 11, 'group_id' => 5, 'name' => 'jr_rebsorten', 'type' => 'selectmultiple', 'title' => 'Rebsorte', 'description' => 'Rebsorte', 'value' => array('cuveé'), 'text' => array('Cuveé'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2018'), 'text' => array('2018'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('135'), 'text' => array('13,5'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('casa-santos-lima'), 'text' => array('Casa Santos Lima'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd "Exquite Collection", 3,99 €'), 'text' => array('Aldi Süd "Exquite Collection", 3,99 €'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('3-halbtrocken-liblich'), 'text' => array('3 - feinherb bis mild (Weine mit über 9 g/l Restzucker) - orange Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('field_id' => 12, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_geschmack', 'title' => 'Geschmack', 'value' => array('halbtrocken'), 'text' => array('halbtrocken'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('portugal'), 'text' => array('Portugal'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('vinho-regional-lisboa'), 'text' => array('Vinho Regional Lisboa'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('field_id' => 11, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_rebsorten', 'title' => 'Rebsorte', 'value' => array('cuveé'), 'text' => array('Cuveé'), 'image' => array(''), 'type' => 'selectmultiple', 'description' => 'Rebsorte', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2018'), 'text' => array('2018'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('135'), 'text' => array('13,5'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('casa-santos-lima'), 'text' => array('Casa Santos Lima'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd "Exquite Collection", 3,99 €'), 'text' => array('Aldi Süd "Exquite Collection", 3,99 €'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2018 Blend Portugal '), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '87.0000', 'ratings' => array('87.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8794, 'slug' => '2017-castelsina-chianti-docg', 'title' => '2017 Castelsina Chianti DOCG ', 'summary' => '', 'description' => '<span style="color: #333333; font-family: \'Droid Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 14px;"> In der Farbe tiefes Rot mit Goldreflexen; vornehmer Duft nach schwarzen Kirschen, Pflaumenmus, Humidor, Tabak; weicher samtiger Körper begleitet von sanftem Temperament, das im Finish in Noten von Bitterschokolade übergeht, leicht salzig unterlegt. Ein Wein zum Entspannen mit drei bis vier Jahren weiterem Potenzial und schön zu Pasta, Rindersteak, Rehrücken oder zum Genießen am Abend.</span>', 'images' => '', 'hits' => 1923, 'cat_id' => 21, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-09 10:49:50', 'modified' => '2020-03-13 10:45:54', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-09 10:49:50', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertungen, Punkte, Castelsina, Italien, Rotwein, Toscana, Wein, Weinbewertung, Chianti, DOCG, Aldi, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertungen: 85 Punkte für 2017 Castelsina Chianti DOCG , Cantina Castelsina Società Agricola, Italien, Toscana', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-09 10:49:50', 'modified_UTC' => '2020-03-13 10:45:54', 'publish_up_UTC' => '2020-03-09 10:49:50', 'url' => 'index.php?option=com_content&view=article&id=8794:2017-castelsina-chianti-docg&catid=21:trocken-ueber-12-prozent'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 21, 'title' => '2 - Trockene Weine, über 12 % Alkohol', 'slug' => 'trocken-ueber-12-prozent', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '85.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '85.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('italien'), 'text' => array('Italien'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('chianti-docg'), 'text' => array('Chianti DOCG'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2017'), 'text' => array('2017'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('docg'), 'text' => array('DOCG'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('13'), 'text' => array('13'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('id' => 6, 'group_id' => 5, 'name' => 'jr_erzeuger', 'type' => 'select', 'title' => 'Erzeuger', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'value' => array('cantina-castelsina-società-agricola'), 'text' => array('Cantina Castelsina Società Agricola'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('cantina-castelsina-società-agricola'), 'text' => array('Cantina Castelsina Società Agricola'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('italien'), 'text' => array('Italien'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('chianti-docg'), 'text' => array('Chianti DOCG'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2017'), 'text' => array('2017'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('docg'), 'text' => array('DOCG'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('13'), 'text' => array('13'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('field_id' => 6, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeuger', 'title' => 'Erzeuger', 'value' => array('cantina-castelsina-società-agricola'), 'text' => array('Cantina Castelsina Società Agricola'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('cantina-castelsina-società-agricola'), 'text' => array('Cantina Castelsina Società Agricola'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2017 Castelsina Chianti DOCG '), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '85.0000', 'ratings' => array('85.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8792, 'slug' => '2018-maravedi-vino-ecologico', 'title' => '2018 Maravedi Vino Ecologico', 'summary' => '', 'description' => '<span style="color: #333333; font-family: \'Droid Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 14px;">Tiefer Duft nach Wacholder, Kirschmarmelade, gerösteten Kastanien, leicht rauchig und mit einer dezenten Kräuternote unterlegt; auf der Zunge ein kräftiger Rotwein gut balancierend zwischen Frucht und Tanninen; weiniges Finish mit reifen weichen Tanninen. Ein Wein wie eine unterhaltsame Kellerbesichtigung mit vier bis fünf Jahren weiterem Potenzial und schön zu Rinderbraten, Pizza oder Salat mit geräucherter Entenbrust</span>', 'images' => '', 'hits' => 1950, 'cat_id' => 21, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-09 10:32:27', 'modified' => '2020-03-13 10:46:50', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-09 10:32:27', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertung, Punkte, Maravedi Vino Ecologico, Bodega Vinedos Fontana, Bertram & Perbellini, Wein, Rotwein, Aldi, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertung: 85 Punkte für 2018 Maravedi Vino Ecologico, Bodega Vinedos Fontana.', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-09 10:32:27', 'modified_UTC' => '2020-03-13 10:46:50', 'publish_up_UTC' => '2020-03-09 10:32:27', 'url' => 'index.php?option=com_content&view=article&id=8792:2018-maravedi-vino-ecologico&catid=21:trocken-ueber-12-prozent'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 21, 'title' => '2 - Trockene Weine, über 12 % Alkohol', 'slug' => 'trocken-ueber-12-prozent', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '85.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '85.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('id' => 12, 'group_id' => 5, 'name' => 'jr_geschmack', 'type' => 'select', 'title' => 'Geschmack', 'description' => '', 'value' => array('trocken'), 'text' => array('trocken'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('spanien'), 'text' => array('Spanien'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('kastilien'), 'text' => array('Kastilien'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('id' => 11, 'group_id' => 5, 'name' => 'jr_rebsorten', 'type' => 'selectmultiple', 'title' => 'Rebsorte', 'description' => 'Rebsorte', 'value' => array('tempranillo-und-syrah'), 'text' => array('Tempranillo und Syrah'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2018'), 'text' => array('2018'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('vino-de-la-tierra-de-castilla'), 'text' => array('Vino de la Tierra de Castilla'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('13'), 'text' => array('13'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('bodega-vinedos-fontana'), 'text' => array('Bodega Vinedos Fontana'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd, "Exquisite Collection", 3,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 3,99 €'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('2-trocken-ueber-12'), 'text' => array('2 - trocken, über 12 Vol.% Alkohol - rote Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('rotwein'), 'text' => array('Rotwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('field_id' => 12, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_geschmack', 'title' => 'Geschmack', 'value' => array('trocken'), 'text' => array('trocken'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('spanien'), 'text' => array('Spanien'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('kastilien'), 'text' => array('Kastilien'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('field_id' => 11, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_rebsorten', 'title' => 'Rebsorte', 'value' => array('tempranillo-und-syrah'), 'text' => array('Tempranillo und Syrah'), 'image' => array(''), 'type' => 'selectmultiple', 'description' => 'Rebsorte', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2018'), 'text' => array('2018'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('vino-de-la-tierra-de-castilla'), 'text' => array('Vino de la Tierra de Castilla'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('13'), 'text' => array('13'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('bodega-vinedos-fontana'), 'text' => array('Bodega Vinedos Fontana'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd, "Exquisite Collection", 3,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 3,99 €'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2018 Maravedi Vino Ecologico'), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '85.0000', 'ratings' => array('85.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8791, 'slug' => '2019-diamante-rioja', 'title' => '2019 Diamante Rioja ', 'summary' => '', 'description' => 'Regionaler Verkauf, nicht in allen Aldi Filialien. <span style="text-decoration: underline;"><span style="color: #0000ff;"><a href="https://www.aldi-sued.de/de/sortiment/getraenke/alkoholische-getraenke/weissweine/detailseite/ps/p/exquisite-collectiondiamante-rioja-doca-semi-dulce/" target="_blank" rel="noopener" style="color: #0000ff; text-decoration: underline;">Filialie finden</a></span></span>.', 'images' => '', 'hits' => 1612, 'cat_id' => 22, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-09 10:26:03', 'modified' => '2020-03-10 10:51:12', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-09 10:26:03', 'publish_down' => null, 'metakey' => 'bonvinitas Weinbewertunge, Diamante, Rioja, Spanien, Aldi Süd', 'metadesc' => 'bonvinitas Weinbewertung: 83 Punkte für 2019 Diamante Rioja, Bodegas Franco, Spanien', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-09 10:26:03', 'modified_UTC' => '2020-03-10 10:51:12', 'publish_up_UTC' => '2020-03-09 10:26:03', 'url' => 'index.php?option=com_content&view=article&id=8791:2019-diamante-rioja&catid=22:trocken-bis-12-prozent'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 22, 'title' => '1 - Trockene Weine, bis 12 % Alkohol', 'slug' => 'trocken-bis-12-prozent', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '83.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '83.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('1-trocken-bis-12'), 'text' => array('1 - trocken, bis einschließlich 12 Vol.% Alkohol - grüne Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('weiswein'), 'text' => array('Weißwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('spanien'), 'text' => array('Spanien'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('rioja'), 'text' => array('Rioja'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('id' => 11, 'group_id' => 5, 'name' => 'jr_rebsorten', 'type' => 'selectmultiple', 'title' => 'Rebsorte', 'description' => 'Rebsorte', 'value' => array('viura'), 'text' => array('Viura'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('doc'), 'text' => array('DOC'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('id' => 6, 'group_id' => 5, 'name' => 'jr_erzeuger', 'type' => 'select', 'title' => 'Erzeuger', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'value' => array('bodegas-franco'), 'text' => array('Bodegas Franco'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('bodegas-franco'), 'text' => array('Bodegas Franco'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd "Exquisite Collection", 4,49 € '), 'text' => array('Aldi Süd "Exquisite Collection", 4,49 € '), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('1-trocken-bis-12'), 'text' => array('1 - trocken, bis einschließlich 12 Vol.% Alkohol - grüne Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('weiswein'), 'text' => array('Weißwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('spanien'), 'text' => array('Spanien'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('rioja'), 'text' => array('Rioja'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('field_id' => 11, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_rebsorten', 'title' => 'Rebsorte', 'value' => array('viura'), 'text' => array('Viura'), 'image' => array(''), 'type' => 'selectmultiple', 'description' => 'Rebsorte', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('doc'), 'text' => array('DOC'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('field_id' => 6, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeuger', 'title' => 'Erzeuger', 'value' => array('bodegas-franco'), 'text' => array('Bodegas Franco'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('bodegas-franco'), 'text' => array('Bodegas Franco'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd "Exquisite Collection", 4,49 € '), 'text' => array('Aldi Süd "Exquisite Collection", 4,49 € '), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2019 Diamante Rioja '), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '83.0000', 'ratings' => array('83.0000'), 'criteria_rating_count' => array('1'))), array('Listing' => array('listing_id' => 8786, 'slug' => '2019-doro-woerner-weisswein-cuvee', 'title' => '2019 Doro Wörner Weißwein Cuvee', 'summary' => '', 'description' => '', 'images' => '', 'hits' => 2039, 'cat_id' => 47, 'user_id' => 43, 'author_alias' => '', 'created' => '2020-03-09 09:58:57', 'modified' => '2020-03-10 10:52:03', 'access' => 1, 'state' => 1, 'publish_up' => '2020-03-09 09:58:57', 'publish_down' => null, 'metakey' => 'Weißweincuvee, Doro Wörnder, Aldi, bonvinitas Weinbewertungen', 'metadesc' => 'bonvinitas Weinbewertungen: 87 Punkte für 2019 Doro Wörner Weißwein Cuvee. Zu beziehen bei Aldi', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 0, 'video_count' => 0, 'photo_count' => 0, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 0, 'video_count_owner' => 0, 'photo_count_owner' => 0, 'audio_count_owner' => 0, 'attachment_count_owner' => 0, 'media_count_user' => 0, 'video_count_user' => 0, 'photo_count_user' => 0, 'audio_count_user' => 0, 'attachment_count_user' => 0, 'menu_id' => false, 'preview' => false, 'pubstate' => 'published', 'created_UTC' => '2020-03-09 09:58:57', 'modified_UTC' => '2020-03-10 10:52:03', 'publish_up_UTC' => '2020-03-09 09:58:57', 'url' => 'index.php?option=com_content&view=article&id=8786:2019-doro-woerner-weisswein-cuvee&catid=47:feinherb-und-mild'), 'ListingType' => array('listing_type_id' => 4), 'Category' => array('cat_id' => 47, 'title' => ' 3 - Feinherbe bis milde Weine', 'slug' => 'feinherb-und-mild', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 3, 'title' => 'Weinbewertungen', 'slug' => 'weinbewertungen', 'menu_id' => ''), 'User' => array('user_id' => 43, 'name' => 'Dieter Simon', 'username' => 'simon', 'email' => 'info@bonvinitas.com', 'block' => 0), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '0.0000', 'user_criteria_rating_count' => '0', 'user_review_count' => 0, 'editor_rating' => '87.0000', 'editor_rating_count' => 1, 'editor_criteria_rating' => '87.0000', 'editor_criteria_rating_count' => '1', 'editor_review_count' => 1, 'review_count' => 0), 'Field' => array('groups' => array('weinbewertungen' => array('Group' => array('group_id' => 5, 'title' => 'Weinbewertungen', 'name' => 'weinbewertungen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_jrreviewcat' => array('id' => 59, 'group_id' => 5, 'name' => 'jr_jrreviewcat', 'type' => 'select', 'title' => 'Kategorie', 'description' => '', 'value' => array('3-halbtrocken-liblich'), 'text' => array('3 - feinherb bis mild (Weine mit über 9 g/l Restzucker) - orange Punkte'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('id' => 9, 'group_id' => 5, 'name' => 'jr_kategorie', 'type' => 'select', 'title' => 'Weinart', 'description' => '', 'value' => array('weiswein'), 'text' => array('Weißwein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('id' => 12, 'group_id' => 5, 'name' => 'jr_geschmack', 'type' => 'select', 'title' => 'Geschmack', 'description' => '', 'value' => array('feinherb'), 'text' => array('feinherb'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('id' => 8, 'group_id' => 5, 'name' => 'jr_land', 'type' => 'select', 'title' => 'Land', 'description' => '', 'value' => array('deutschland'), 'text' => array('Deutschland'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('id' => 7, 'group_id' => 5, 'name' => 'jr_anbauregion', 'type' => 'select', 'title' => 'Anbaugebiet', 'description' => '', 'value' => array('rheinhessen'), 'text' => array('Rheinhessen'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('id' => 11, 'group_id' => 5, 'name' => 'jr_rebsorten', 'type' => 'selectmultiple', 'title' => 'Rebsorte', 'description' => 'Rebsorte', 'value' => array('cuveé'), 'text' => array('Cuveé'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('id' => 10, 'group_id' => 5, 'name' => 'jr_jahrgang', 'type' => 'select', 'title' => 'Jahrgang', 'description' => '', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('id' => 32, 'group_id' => 5, 'name' => 'jr_qualitaetsstufe', 'type' => 'select', 'title' => 'Qualitätsstufe', 'description' => '', 'value' => array('deutscher-qualitätswein'), 'text' => array('Deutscher Qualitätswein'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('id' => 13, 'group_id' => 5, 'name' => 'jr_alkohol', 'type' => 'select', 'title' => 'Alkohol in % Vol. ', 'description' => '', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('id' => 6, 'group_id' => 5, 'name' => 'jr_erzeuger', 'type' => 'select', 'title' => 'Erzeuger', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'value' => array('doro-wörner-abfüller'), 'text' => array('Doro Wörner, Abfüller'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('id' => 77, 'group_id' => 5, 'name' => 'jr_erzeugerstandardformat', 'type' => 'select', 'title' => 'mehr vom Erzeuger', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'value' => array('abfüller-doro-wörner-gmbh'), 'text' => array('Abfüller: Doro Wörner GmbH'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('id' => 190, 'group_id' => 5, 'name' => 'jr_pruefdatum', 'type' => 'select', 'title' => 'Prüfdatum', 'description' => '', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('id' => 185, 'group_id' => 5, 'name' => 'jr_weinbezugwirwinzer', 'type' => 'code', 'title' => 'Weinbezug:', 'description' => '', 'value' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('id' => 204, 'group_id' => 5, 'name' => 'jr_haendlerimporteur', 'type' => 'select', 'title' => 'Händler / Importeur', 'description' => 'Name vom Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_jrreviewcat' => array('field_id' => 59, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jrreviewcat', 'title' => 'Kategorie', 'value' => array('3-halbtrocken-liblich'), 'text' => array('3 - feinherb bis mild (Weine mit über 9 g/l Restzucker) - orange Punkte'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'https://www.bonvinitas.com/de/weinbewertungen/unsere-bewertungsbogen', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_kategorie' => array('field_id' => 9, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_kategorie', 'title' => 'Weinart', 'value' => array('weiswein'), 'text' => array('Weißwein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_geschmack' => array('field_id' => 12, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_geschmack', 'title' => 'Geschmack', 'value' => array('feinherb'), 'text' => array('feinherb'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_land' => array('field_id' => 8, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_land', 'title' => 'Land', 'value' => array('deutschland'), 'text' => array('Deutschland'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}" title="Mehr von diesem Land">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_anbauregion' => array('field_id' => 7, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_anbauregion', 'title' => 'Anbaugebiet', 'value' => array('rheinhessen'), 'text' => array('Rheinhessen'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_rebsorten' => array('field_id' => 11, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_rebsorten', 'title' => 'Rebsorte', 'value' => array('cuveé'), 'text' => array('Cuveé'), 'image' => array(''), 'type' => 'selectmultiple', 'description' => 'Rebsorte', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '4', 'description_output' => '0', 'autocomplete.search' => '1', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'max_options' => '', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_jahrgang' => array('field_id' => 10, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_jahrgang', 'title' => 'Jahrgang', 'value' => array('2019'), 'text' => array('2019'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_qualitaetsstufe' => array('field_id' => 32, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_qualitaetsstufe', 'title' => 'Qualitätsstufe', 'value' => array('deutscher-qualitätswein'), 'text' => array('Deutscher Qualitätswein'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '1', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_alkohol' => array('field_id' => 13, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_alkohol', 'title' => 'Alkohol in % Vol. ', 'value' => array('12'), 'text' => array('12'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'description_position' => '1', 'click2search' => '0', 'click2add' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_erzeuger' => array('field_id' => 6, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeuger', 'title' => 'Erzeuger', 'value' => array('doro-wörner-abfüller'), 'text' => array('Doro Wörner, Abfüller'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Suche. Format: "Bös, Weingut"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 1, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8', 'access_view' => '1,2,3,4,5,6,7,8', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')), 'jr_erzeugerstandardformat' => array('field_id' => 77, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_erzeugerstandardformat', 'title' => 'mehr vom Erzeuger', 'value' => array('abfüller-doro-wörner-gmbh'), 'text' => array('Abfüller: Doro Wörner GmbH'), 'image' => array(''), 'type' => 'select', 'description' => 'Für Anzeige. Format "Weingut Bös"', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={itemid}&url=tag/{fieldname}/{optionvalue}/criteria:{criteriaid}/', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_pruefdatum' => array('field_id' => 190, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_pruefdatum', 'title' => 'Prüfdatum', 'value' => array('6320'), 'text' => array('6.3.20'), 'image' => array(''), 'type' => 'select', 'description' => '', 'properties' => array('show_title' => 0, 'location' => 'content', 'contentview' => 0, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'click2add' => '1', 'description_position' => '1', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')), 'jr_weinbezugwirwinzer' => array('field_id' => 185, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_weinbezugwirwinzer', 'title' => 'Weinbezug:', 'value' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'text' => array('Aldi Süd, "Exquisite Collection", 4,99 €'), 'image' => array(''), 'type' => 'code', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 0, 'listsort' => 0, 'search' => 0, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'listing_type' => '')), 'jr_haendlerimporteur' => array('field_id' => 204, 'group_id' => 5, 'group_show_title' => 0, 'group_title' => 'Weinbewertungen', 'group_name' => 'weinbewertungen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_haendlerimporteur', 'title' => 'Händler / Importeur', 'value' => array('aldi-süd'), 'text' => array('Aldi Süd'), 'image' => array(''), 'type' => 'select', 'description' => 'Name vom Händler / Importeur', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 1, 'listview' => 0, 'compareview' => 1, 'listsort' => 1, 'search' => 1, 'access' => '1,2,3,4,5,6,7,8,9,10', 'access_view' => '1,2,3,4,5,6,7,8,9,10', 'autocomplete' => '0', 'click2search' => '1', 'click2add' => '1', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'option_images' => '1', 'option_ordering' => '1', 'click2searchlink' => 'tag/{fieldname}/{optionvalue}/?criteria={criteriaid}', 'output_format' => '{FIELDTEXT}', 'click2search_format' => '<a href="{click2searchurl}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => '2019 Doro Wörner Weißwein Cuvee'), 'Community' => array('name' => 'Dieter Simon', 'community_user_id' => 43, 'avatar_lg_path' => null, 'avatar_path' => null, 'url' => null, 'extension' => 'nocommunity'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array('average_rating' => '87.0000', 'ratings' => array('87.0000'), 'criteria_rating_count' => array('1')))), 'fieldCrumbs' => array(array('field' => 'haendlerimporteur', 'value' => 'aldi-süd', 'optionid' => 5584, 'text' => 'Aldi Süd', 'description' => '', 'control_field' => '', 'control_value' => '', 'control_fieldid' => null)), 'pagination' => array('total' => 7, 'limit' => 25, 'page' => 1, 'ajax' => '0'), 'fieldOrderArray' => array('jr_haendlerimporteur' => array('fieldid' => 204, 'text' => 'Händler / Importeur', 'value' => 'jr_haendlerimporteur', 'access' => '1,2,3,4,5,6,7,8,9,10')), 'ratingCriteriaOrderArray' => array(array('CriteriaRating' => array('criteria_id' => 1, 'title' => 'Bewertungen', 'required' => 0, 'weight' => 0, 'description' => '', 'listing_type_id' => 4, 'ordering' => 1, 'listing_type_state' => 1))))) (/www/htdocs/w00e5bfa/components/com_s2framework/s2framework/libs/view/view.php:203) at MyView->render('listings', 'listings_blogview', null) (/www/htdocs/w00e5bfa/components/com_s2framework/s2framework/libs/controller/controller.php:247) at S2Controller->render('listings', 'listings_blogview', null) (/www/htdocs/w00e5bfa/components/com_jreviews/jreviews/controllers/my_controller.php:362) at MyController->render('listings', 'listings_blogview') (/www/htdocs/w00e5bfa/components/com_jreviews/jreviews/controllers/categories_controller.php:709) at CategoriesController->listings() (/www/htdocs/w00e5bfa/components/com_jreviews/jreviews/controllers/categories_controller.php:1228) at CategoriesController->search(array('criteria' => '4', 'url' => array('criteria' => '4', 'url' => 'tag/haendlerimporteur/aldi-s%C3%BCd', 'Itemid' => '563', 'option' => 'com_jreviews'), 'data' => array('controller' => 'categories', 'action' => 'search', '__raw' => array('controller' => 'categories', 'action' => 'search')), 'form' => array(), 'fikker-61vm-nk2N' => 'MgPGRI6oXLV7DSLWJk4y6wNi63F1ZE0E', 'view' => 'advancedsearch', 'option' => 'com_jreviews', 'Itemid' => '563', 'tag' => array('field' => 'haendlerimporteur', 'value' => 'aldi-süd'), 'default_limit' => 25)) (/www/htdocs/w00e5bfa/components/com_s2framework/s2framework/dispatcher.php:359) at S2Dispatcher->dispatch(array()) (/www/htdocs/w00e5bfa/components/com_jreviews/routes/web-legacy-joomla.php:138) at JReviewsLegacyRouting('/tag/haendlerimporteur/aldi-s%C3%BCd') (/www/htdocs/w00e5bfa/components/com_jreviews/routes/web.php:41) at FWD\Illuminate\Support\ServiceProvider->{closure}('tag/haendlerimporteur/aldi-süd') (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Route.php:206) at FWD\Illuminate\Routing\Route->runCallable() (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Route.php:181) at FWD\Illuminate\Routing\Route->run() (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Router.php:607) at FWD\Illuminate\Routing\Router->FWD\Illuminate\Routing\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:111) at FWD\Illuminate\Pipeline\Pipeline->FWD\Illuminate\Pipeline\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:44) at FWD\Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:145) at FWD\Illuminate\Pipeline\Pipeline->FWD\Illuminate\Pipeline\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:88) at FWD\Illuminate\Pipeline\Pipeline->then(object(Closure)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Router.php:606) at FWD\Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Router.php:593) at FWD\Illuminate\Routing\Router->runRoute(object(Request), object(Route)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Router.php:565) at FWD\Illuminate\Routing\Router->dispatchToRoute(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Routing/Router.php:555) at FWD\Illuminate\Routing\Router->dispatch(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:124) at FWD\Illuminate\Foundation\Http\Kernel->FWD\Illuminate\Foundation\Http\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:111) at FWD\Illuminate\Pipeline\Pipeline->FWD\Illuminate\Pipeline\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/fruitcake/laravel-cors/src/HandleCors.php:34) at FWD\Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:145) at FWD\Illuminate\Pipeline\Pipeline->FWD\Illuminate\Pipeline\{closure}(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:88) at FWD\Illuminate\Pipeline\Pipeline->then(object(Closure)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:102) at FWD\Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:83) at FWD\Illuminate\Foundation\Http\Kernel->handle(object(Request)) (/www/htdocs/w00e5bfa/components/com_s2framework/build/bootstrap/joomla.php:90) at s2framework\s2_dispatch() (/www/htdocs/w00e5bfa/components/com_jreviews/jreviews/cms_compat/joomla/bootloader.php:13) at require('/www/htdocs/w00e5bfa/components/com_jreviews/jreviews/cms_compat/joomla/bootloader.php') (/www/htdocs/w00e5bfa/components/com_jreviews/joomla.php:20) at JReviews\JReviews->__invoke('/www/htdocs/w00e5bfa/components/com_jreviews/jreviews.php') (/www/htdocs/w00e5bfa/components/com_jreviews/jreviews.php:25) at require_once('/www/htdocs/w00e5bfa/components/com_jreviews/jreviews.php') (/www/htdocs/w00e5bfa/libraries/src/Dispatcher/LegacyComponentDispatcher.php:71) at Joomla\CMS\Dispatcher\LegacyComponentDispatcher::Joomla\CMS\Dispatcher\{closure}('/www/htdocs/w00e5bfa/components/com_jreviews/jreviews.php') (/www/htdocs/w00e5bfa/libraries/src/Dispatcher/LegacyComponentDispatcher.php:73) at Joomla\CMS\Dispatcher\LegacyComponentDispatcher->dispatch() (/www/htdocs/w00e5bfa/libraries/src/Component/ComponentHelper.php:361) at Joomla\CMS\Component\ComponentHelper::renderComponent('com_jreviews') (/www/htdocs/w00e5bfa/libraries/src/Application/SiteApplication.php:208) at Joomla\CMS\Application\SiteApplication->dispatch() (/www/htdocs/w00e5bfa/libraries/src/Application/SiteApplication.php:249) at Joomla\CMS\Application\SiteApplication->doExecute() (/www/htdocs/w00e5bfa/libraries/src/Application/CMSApplication.php:293) at Joomla\CMS\Application\CMSApplication->execute() (/www/htdocs/w00e5bfa/includes/app.php:61) at require_once('/www/htdocs/w00e5bfa/includes/app.php') (/www/htdocs/w00e5bfa/index.php:32) |