| Current Path : /home/bijouxly/www/templates/themler2016a_160332/html/com_content/category/ |
| Current File : /home/bijouxly/www/templates/themler2016a_160332/html/com_content/category/blog_item.php |
<?php
defined('_JEXEC') or die;
?>
<?php /*BEGIN_EDITOR_OPEN*/
$app = JFactory::getApplication('site');
$templateName = $app->getTemplate();
$ret = false;
$templateDir = JPATH_THEMES . '/' . $templateName;
$editorClass = $templateDir . '/app/' . 'Editor.php';
if (!$app->isAdmin() && file_exists($editorClass)) {
require_once $templateDir . '/app/' . 'Editor.php';
$ret = DesignerEditor::override($templateName, __FILE__);
}
if ($ret) {
$editorDir = $templateName . '/editor';
require($ret);
return;
} else {
/*BEGIN_EDITOR_CLOSE*/ ?>
<?php
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.framework');
Designer::load("Designer_Content");
$component = new DesignerContent($this, $this->params);
$article = $component->article('category', $this->item, $this->item->params);
$params = array();
if (strlen($article->title)) {
$params['header-text'] = $this->escape($article->title);
if (strlen($article->titleLink))
$params['header-link'] = $article->titleLink;
}
// Change the order of ""if"" statements to change the order of article metadata header items.
if (strlen($article->created))
$params['date-icons'][] = $article->createdDateInfo($article->created);
if (strlen($article->modified))
$params['date-icons'][] = $article->modifiedDateInfo($article->modified);
if (strlen($article->published))
$params['date-icons'][] = $article->publishedDateInfo($article->published);
if (strlen($article->author))
$params['author-icon'] = $article->authorInfo($article->author, $article->authorLink);
if ($article->printIconVisible)
$params['print-icon'] = $article->printIconInfo();
if ($article->emailIconVisible)
$params['email-icon'] = $article->emailIconInfo();
if ($article->editIconVisible)
$params['edit-icon'] = $article->editIconInfo();
if (strlen($article->hits))
$params['hits-icons'] = $article->hitsInfo($article->hits);
// Build article content
$content = '';
if (!$article->introVisible)
$content .= $article->event('afterDisplayTitle');
$content .= $article->event('beforeDisplayContent');
if (strlen($article->images['intro']['image'])) {
$article->images['intro']['link'] = $article->titleLink;
$params['data-image'] = $article->images['intro'];
}
$content .= $article->intro(funcBalanceTags($article->intro));
if (strlen($article->readmore)) {
$params['readmore-text'] = $article->readmore;
$params['readmore-link'] = $article->readmoreLink;
}
//$content .= $article->readmore($article->readmore, $article->readmoreLink);
$content .= $article->event('afterDisplayContent');
$params['content'] = processingShortcodes($content);
if (count(($article->tags)) > 0)
$params['tags-icon'] = $article->tags;
// Change the order of ""if"" statements to change the order of article metadata footer items.
if (strlen($article->category))
$params['category-icon'] = $article->categories($article->parentCategory, $article->parentCategoryLink, $article->category, $article->categoryLink);
// Render article
echo renderTemplateFromIncludes($this->articleTemplate, array($params));
?>
<?php /*END_EDITOR_OPEN*/ } /*END_EDITOR_CLOSE*/ ?>