$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' => 'Frühburgunder', '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' => 'Frühburgunder', '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' => 6071, 'slug' => 'die-besten-burgunder-von-deutschen-winzern-praemiert', 'title' => 'Die besten Burgunder von deutschen Winzern prämiert', 'summary' => 'Burgunder-Cup: WirWinzer prämiert die besten Grau-, Weiß-, Spät- und Frühburgunder.', 'description' => '<p> </p> <p>Die hiesigen Weine der Burgunder-Rebsorten erreichen ein immer höheres Niveau. Das war eines der Ergebnisse des Deutschen Burgunder-Cups 2015, der unter Beteiligung der Weinexperten Paula Bosch, Lothar Schrempp und Peter Zilliger sowie dem WirWinzer-Verkostungs-Team um Jenny Weiss in München stattfand. Neben altbekannten Platzhirschen konnten auch Newcomer überzeugen.</p> <p> </p> <h3>Blindverkostung mit vier Rebsorten in drei Klassen</h3> <p><img style="margin-right: 15px; margin-bottom: 10px; float: left;" alt="Die blind verkosteten Weine wurden in drei stilistische Klassen eingeteilt." src="images/2015-11-25-BurgunderCup-WirWinzer_1.jpg" height="240" width="361" />Ausgehend von einem von WirWinzer eigens entwickelten Bewertungssystem, welches das Geschmacksempfinden des Weingenießers in den Vordergrund stellt, wurden mehr als 400 Weine der Rebsorten Weiß-, Grau-, Früh- und Spätburgunder in drei stilistische Klassen eingeteilt und in Blindverkostung bewertet: Frisch-fruchtige Weine (in der Regel im Stahltank ausgebaut und fruchtbetont), Weine mit Herkunftsbezug (aus einzelnen oder mehreren Weinbergen einer Ortschaft) und Premium-Weine (Weine der Sortimentsspitze aus den besten Einzellagen, mit Holzausbau).</p> <p> </p> <h3>Überraschungssieger bei den Spätburgundern</h3> <p>Für die wohl größte Furore sorgte Volker Riske vom Weingut Erwin Riske mit dem 2013er Spätburgunder vom Dernauer Hardtberg in der Königs-Disziplin "Spätburgunder / Premium-Weine". Aber auch berühmte Namen waren erfolgreich: In der Premium-Klasse der Grauburgunder konnte sich mit dem 2013er Grauburgunder Eichberg Großes Gewächs vom VDP-Weingut Salwey eines der renommiertesten badischen Weingüter den ersten Platz sichern.</p> <p> </p> <h3>Die Sieger</h3> <p><strong>Kategorie Premium-Wein</strong></p> <p><strong>Grauburgunder:</strong> 2013 Grauburgunder Eichberg VDP Großes Gewächs, QbA trocken, Weingut Salwey (Baden)<br /><strong>Weißburgunder:</strong> 2014 Edition Weinart Pinot Blanc – im Holzfass gereift – Spätlese trocken, Weinbau Hofmann (Franken)<br /><strong>Spätburgunder:</strong> 2013 Dernauer Hardtberg Spätburgunder QbA trocken, Weingut Erwin Riske (Ahr)<br /><strong>Frühburgunder:</strong> 2011 Marienthaler Rosenberg Frühburgunder QbA trocken, Weingut Peter Kriechel (Ahr)<br /><br /><strong></strong></p> <p><strong>Kategorie Wein mit Herkunftsbezug</strong><br /><br /><strong>Grauburgunder:</strong> 2014 Dalheimer Grauer Burgunder QbA trocken, Weingut Eckehart Gröhl (Rheinhessen)<br /><strong>Weißburgunder:</strong> 2014 Ingelheimer Weisser Burgunder VDP Ortswein QbA trocken, Weingut Schloss Westerhaus (Rheinhessen)<br /><strong>Spätburgunder:</strong> 2011 Brauneberger Mandelgraben Pinot Noir QbA trocken, Weingut Markus Molitor (Mosel)<br /><strong>Frühburgunder:</strong> 2013 Mayschoß Pinot Madeleine QbA trocken, Weingut Josten & Klein (Mittelrhein)</p> <p> </p> <p><strong>Kategorie frisch-fruchtiger Wein</strong> </p> <p><strong>Grauburgunder:</strong> 2014 Grauer Burgunder QbA trocken, Weingut Wilker (Pfalz)<br /><strong>Weissburgunder:</strong> 2014 Weißburgunder „Bastei“ QbA trocken, Weingut Löffler (Baden)<br /><strong>Spätburgunder:</strong> 2014 Pfeddersheimer Spätburgunder QbA trocken, Weingut Feth-Wehrhof (Rheinhessen)<br /><br />Alle Finalisten finden Sie <a href="http://wirwinzer.de/weine/burgunder-cup-siegerweine">hier. </a></p>', 'images' => '{"image_intro":"","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"media\\/reviews\\/photos\\/original\\/c9\\/02\\/a7\\/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg","float_fulltext":"","image_fulltext_alt":"","image_fulltext_caption":""}', 'hits' => 5115, 'cat_id' => 11, 'user_id' => 291, 'author_alias' => '', 'created' => '2015-11-25 11:59:34', 'modified' => '2015-11-25 11:59:34', 'access' => 1, 'state' => 1, 'publish_up' => '2015-11-25 11:59:34', 'publish_down' => null, 'metakey' => '', 'metadesc' => '', 'extension' => 'com_content', 'featured' => 0, 'media_count' => 1, 'video_count' => 0, 'photo_count' => 1, 'audio_count' => 0, 'attachment_count' => 0, 'media_count_owner' => 1, 'video_count_owner' => 0, 'photo_count_owner' => 1, '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' => '2015-11-25 11:59:34', 'modified_UTC' => '2015-11-25 11:59:34', 'publish_up_UTC' => '2015-11-25 11:59:34', 'url' => 'index.php?option=com_content&view=article&id=6071:die-besten-burgunder-von-deutschen-winzern-praemiert&catid=11:news'), 'ListingType' => array('listing_type_id' => 1, 'config' => array('photo_layout' => 'contact_lightbox')), 'Category' => array('cat_id' => 11, 'title' => 'News', 'slug' => 'news', 'access' => 1, 'params' => '{"category_layout":"","image":"","image_alt":""}', 'menu_id' => '', 'menu_id_base' => null), 'Directory' => array('dir_id' => 1, 'title' => 'News', 'slug' => 'news', 'menu_id' => ''), 'User' => array('user_id' => null, 'name' => null, 'username' => null, 'email' => null, 'block' => null), 'Claim' => array('approved' => 1), 'Review' => array('user_rating' => '0.0000', 'user_rating_count' => 0, 'user_criteria_rating' => '', 'user_criteria_rating_count' => '', 'user_review_count' => 0, 'editor_rating' => '0.0000', 'editor_rating_count' => 0, 'editor_criteria_rating' => '', 'editor_criteria_rating_count' => '', 'editor_review_count' => 0, 'review_count' => 0), 'Field' => array('groups' => array('schlagwoerter-quellen' => array('Group' => array('group_id' => 1, 'title' => 'Schlagwörter & Quellenangaben', 'name' => 'schlagwoerter-quellen', 'show_title' => 0, 'control_field' => '', 'control_value' => ''), 'Fields' => array('jr_autor' => array('id' => 74, 'group_id' => 1, 'name' => 'jr_autor', 'type' => 'text', 'title' => 'Autor', 'description' => '', 'value' => array('Redaktion bonvinitas'), 'text' => array('Redaktion bonvinitas'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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', 'description_position' => '1', 'click2search' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_fotoquelle' => array('id' => 170, 'group_id' => 1, 'name' => 'jr_fotoquelle', 'type' => 'text', 'title' => 'Fotos', 'description' => '', 'value' => array('WirWinzer'), 'text' => array('WirWinzer'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', '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_quelle' => array('id' => 2, 'group_id' => 1, 'name' => 'jr_quelle', 'type' => 'text', 'title' => 'Textquelle', 'description' => 'Nicht Autor nennen. ', 'value' => array('WirWinzer'), 'text' => array('WirWinzer'), 'image' => array(''), 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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', 'click2search' => '0', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', '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_schlagwoerter' => array('id' => 4, 'group_id' => 1, 'name' => 'jr_schlagwoerter', 'type' => 'selectmultiple', 'title' => 'Schlagwörter', 'description' => 'WICHTIG: Dient zum Verknüpfen ähnlicher Inhalte. Nur THEMENRELEVANTE Wörter vom Artikel verwenden. Nichts Allgemeines wie "Wein". Erst schauen ob Wort in Liste vorhanden bevor man ein Neues hinzufügt. Mehrere Werte aktivieren / deaktivieren mit gedrückter "STRG"-Taste.', 'value' => array('grauburgunder', 'spatburgunder', 'weisburgunder', 'frühburgunder', 'burgunder-cup'), 'text' => array('Grauburgunder', 'Spätburgunder', 'Weißburgunder', 'Frühburgunder', 'Burgunder-Cup'), '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' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'checkbox', '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}" title="Mehr Themen zu {optiontext}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => ''))))), 'pairs' => array('jr_autor' => array('field_id' => 74, 'group_id' => 1, 'group_show_title' => 0, 'group_title' => 'Schlagwörter & Quellenangaben', 'group_name' => 'schlagwoerter-quellen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_autor', 'title' => 'Autor', 'value' => array('Redaktion bonvinitas'), 'text' => array('Redaktion bonvinitas'), 'image' => array(''), 'type' => 'text', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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', 'description_position' => '1', 'click2search' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', 'click2searchlink' => 'index.php?option=com_jreviews&Itemid={ITEMID}&url=tag/{FIELDNAME}/{FIELDTEXT}/criteria:{CRITERIAID}/', 'output_format' => '{FIELDTEXT}', 'formatbeforeclick' => '0', 'listing_type' => '')), 'jr_fotoquelle' => array('field_id' => 170, 'group_id' => 1, 'group_show_title' => 0, 'group_title' => 'Schlagwörter & Quellenangaben', 'group_name' => 'schlagwoerter-quellen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_fotoquelle', 'title' => 'Fotos', 'value' => array('WirWinzer'), 'text' => array('WirWinzer'), 'image' => array(''), 'type' => 'text', 'description' => '', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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' => '0', 'description_position' => '1', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', '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_quelle' => array('field_id' => 2, 'group_id' => 1, 'group_show_title' => 0, 'group_title' => 'Schlagwörter & Quellenangaben', 'group_name' => 'schlagwoerter-quellen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_quelle', 'title' => 'Textquelle', 'value' => array('WirWinzer'), 'text' => array('WirWinzer'), 'image' => array(''), 'type' => 'text', 'description' => 'Nicht Autor nennen. ', 'properties' => array('show_title' => 1, 'location' => 'content', 'contentview' => 0, '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', 'click2search' => '0', 'description_position' => '2', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'link', 'autocomplete.option_pos' => 'after', 'valid_regex' => '', 'allow_html' => '0', '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_schlagwoerter' => array('field_id' => 4, 'group_id' => 1, 'group_show_title' => 0, 'group_title' => 'Schlagwörter & Quellenangaben', 'group_name' => 'schlagwoerter-quellen', 'group_control_field' => '', 'group_control_value' => array(), 'name' => 'jr_schlagwoerter', 'title' => 'Schlagwörter', 'value' => array('grauburgunder', 'spatburgunder', 'weisburgunder', 'frühburgunder', 'burgunder-cup'), 'text' => array('Grauburgunder', 'Spätburgunder', 'Weißburgunder', 'Frühburgunder', 'Burgunder-Cup'), 'image' => array('', '', '', '', ''), 'type' => 'selectmultiple', 'description' => 'WICHTIG: Dient zum Verknüpfen ähnlicher Inhalte. Nur THEMENRELEVANTE Wörter vom Artikel verwenden. Nichts Allgemeines wie "Wein". Erst schauen ob Wort in Liste vorhanden bevor man ein Neues hinzufügt. Mehrere Werte aktivieren / deaktivieren mit gedrückter "STRG"-Taste.', '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' => '1', 'click2add' => '1', 'description_position' => '2', 'description_output' => '0', 'autocomplete.search' => '0', 'autocomplete.option_type' => 'checkbox', '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}" title="Mehr Themen zu {optiontext}">{optiontext}</a>', 'formatbeforeclick' => '0', 'php_format_theme' => '', 'php_format' => '', 'listing_type' => '')))), 'Favorite' => array('favored' => 0, 'my_favorite' => 0), 'Media' => array(), 'MainMedia' => array('media_function' => null, 'media_type' => 'photo', 'title' => 'Mehr als 400 Weine von deutschen Winzern wurden beim Burgunder-Cup in München verkostet.', 'menu_id' => '', 'media_id' => 950, 'likes_rank' => 0, 'likes_up' => 0, 'likes_total' => 0, 'created' => '2015-11-25 11:59:46', 'main_media' => 1, 'listing_id' => 6071, 'review_id' => 0, 'user_id' => 291, 'filename' => 'die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786', 'file_extension' => 'jpg', 'rel_path' => 'original/c9/02/a7/', 'description' => '', 'media_info' => array('image' => array('format' => 'jpg', 'width' => 800, 'height' => 800, 'url' => 'https://bonvinitas.com/media/reviews/photos/original/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), 'thumbnail' => array('65x65c' => array('format' => 'jpg', 'width' => '65', 'height' => '65', 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/65x65c/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '180x140c' => array('format' => 'jpg', 'width' => '180', 'height' => '140', 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/180x140c/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '780x560c' => array('format' => 'jpg', 'width' => '780', 'height' => '560', 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/780x560c/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '100x100c' => array('format' => 'jpg', 'width' => '100', 'height' => '100', 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/100x100c/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '80x80c' => array('format' => 'jpg', 'width' => '80', 'height' => '80', 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/80x80c/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '180x140s' => array('format' => 'jpg', 'width' => 140, 'height' => 140, 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/180x140s/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), '640x640s' => array('format' => 'jpg', 'width' => 640, 'height' => 640, 'url' => 'https://bonvinitas.com/media/reviews/photos/thumbnail/640x640s/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'))), 'metadata' => array(), 'embed' => '', 'published' => 1, 'approved' => 1, 'access' => 1, 'views' => 0, 'filesize' => 438195, 'extension' => 'com_content', 'drive' => 'photo', 'media_base_url' => 'https://bonvinitas.com/media/reviews/photos/original/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786', 'media_url' => 'https://bonvinitas.com/media/reviews/photos/original/c9/02/a7/die-besten-burgunder-von-deutschen-winzern-praemiert-95-1448452786.jpg'), 'timezone' => 'local', 'RatingUser' => array(), 'RatingEditor' => array())), 'fieldCrumbs' => array(array('field' => 'schlagwoerter', 'value' => 'frühburgunder', 'optionid' => 3226, 'text' => 'Frühburgunder', 'description' => '', 'control_field' => '', 'control_value' => '', 'control_fieldid' => null)), 'pagination' => array('total' => 1, 'limit' => 25, 'page' => 1, 'ajax' => '0'), 'fieldOrderArray' => array(), 'ratingCriteriaOrderArray' => array())) (/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('url' => array('url' => 'tag/schlagwoerter/fr%c3%bchburgunder', 'Itemid' => '563', 'option' => 'com_jreviews'), 'data' => array('controller' => 'categories', 'action' => 'search', '__raw' => array('controller' => 'categories', 'action' => 'search')), 'form' => array(), 'view' => 'advancedsearch', 'option' => 'com_jreviews', 'Itemid' => '563', 'tag' => array('field' => 'schlagwoerter', 'value' => 'frühburgunder'), '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/schlagwoerter/fr%c3%bchburgunder') (/www/htdocs/w00e5bfa/components/com_jreviews/routes/web.php:41) at FWD\Illuminate\Support\ServiceProvider->{closure}('tag/schlagwoerter/frühburgunder') (/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) |