getMenu(); JHtml::addIncludePath(JPATH_COMPONENT . '/helpers'); include_once('templates/'. $app->getTemplate() .'/config.php'); $resizer = new ImgResizeCache(); $tpath = JURI::base(true).'/templates/'.$app->getTemplate().'/'; $conf = new JConfig; $params = $this->item->params; $showPublishDate = $params->get('show_publish_date'); $images = json_decode($this->item->images); $image = NULL; $imageAlt = NULL; $imageCaption = NULL; if (!empty($images->image_fulltext)) { $image = $images->image_fulltext; $imageAlt = $images->image_fulltext_alt; $imageCaption = $images->image_fulltext_caption; } else if (!empty($images->image_intro)) { $image = $images->image_intro; $imageAlt = $images->image_intro_alt; $imageCaption = $images->image_intro_caption; } jimport('joomla.application.module.helper'); $attribs['style'] = 'xhtml'; $breadcrumbs = JModuleHelper::getModules('breadcrumbs'); $articleAside = JModuleHelper::getModules('article-aside'); $document = JFactory::getDocument(); $baseUrl = JURI::base(); $ogMetatags = '' . "\n"; if ($this->item->title) { $ogMetatags .= '' . "\n"; } if ($this->document->base) { $ogMetatags .= '' . "\n"; } if ($image) { $ogMetatags .= '' . "\n"; } if ( $this->item->params['page_description']) { $ogMetatags .= '' . "\n"; } $document->addCustomTag($ogMetatags); // find out, if article is in Product Category $isProduct = false; // array of recursive category ids $recursiveCategoryIds = array(); $parentCategories = JCategories::getInstance('Content')->get($this->item->catid); $parentCategory = $parentCategories->getParent(); $recursiveCategoryIds[] .= $this->item->catid; while ($parentCategory->id !== 'root') { $recursiveCategoryIds[] .= $parentCategory->id; $parentCategory = $parentCategory->getParent(); } if (in_array(9, $recursiveCategoryIds)) { $isProduct = true; } ?>
© GRA.at

item->params->get('show_page_heading', 1) && !empty($this->item->params->get('page_heading'))) : ?> escape($this->item->params->get('page_heading')); ?> item->params->get('show_title')) : ?> escape($this->item->title); ?>

get('show_intro') && !empty($this->item->introtext) && !empty($this->item->fulltext)) : ?>
item->introtext); ?>
item->event->beforeDisplayContent; ?>
get('show_intro') && !empty($this->item->introtext) && !empty($this->item->fulltext)) : ?> item->fulltext); ?> item->text); ?>
item->event->afterDisplayContent; ?>