0 Пользователей и 1 Гость просматривают эту тему.
  • 0 Ответов
  • 1343 Просмотров
*

DailyD

  • Новичок
  • 5
  • 0 / 0
Проблема с выводом даты модификации в шаблоне Everest от yootheme. Joomla 2.5, шаблон Yoo Everest, Warp 7
По умолчанию в шаблоне отображается только Created Date но необходимо что б отображалась Modified Date
Как я понял мне необходимо внести изменения в templates\yoo_everest\warp\systems\joomla\layouts\com_content\article\default.php
Код вот такой
Код
<?php
/**
* @package   Warp Theme Framework
* @author    YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

// no direct access
defined('_JEXEC') or die;

// get view
$menu = JFactory::getApplication()->getMenu()->getActive();
$view = is_object($menu) && isset($menu->query['view'])? $menu->query['view'] : null;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

// Create shortcuts to some parameters.
$params = $this->item->params;
$images = json_decode($this->item->images);
$urls = json_decode($this->item->urls);
$canEdit = $params->get('access-edit');
$user = JFactory::getUser();

if ($this->params->get('show_page_heading')) {
echo '<h1 class="uk-h3">'.$this->escape($this->params->get('page_heading')).'</h1>';
}

// template args
$args = array(
'permalink' => ($view != 'article')? JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catslug), true, -1) : '',
'image' => isset($images->image_fulltext) && !empty($images->image_fulltext) && $params->get('access-view')? htmlspecialchars($images->image_fulltext) : '',
'image_alignment' => !isset($images->float_fulltext) || empty($images->float_fulltext)? htmlspecialchars($params->get('float_fulltext')) : htmlspecialchars($images->float_fulltext),
'image_alt' => isset($images->image_fulltext_alt)? htmlspecialchars($images->image_fulltext_alt) : '',
'image_caption' => isset($images->image_fulltext_caption)? htmlspecialchars($images->image_fulltext_caption) : '',
'title' => $params->get('show_title')? $this->escape($this->item->title) : '',
'title_link' => '',
'author' => '',
'author_url' => '',
'date' => $params->get('show_create_date')? $this->item->created : '',     
        'datetime' => substr($this->item->created, 0, 10),
'category' => $params->get('show_category')? $this->escape($this->item->category_title) : '',
'category_url' => $params->get('link_category') && $this->item->catslug ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)) : '',
'hook_aftertitle' => !$params->get('show_intro')? $this->item->event->afterDisplayTitle : '',
'hook_beforearticle' => $this->item->event->beforeDisplayContent.(isset($this->item->toc)? $this->item->toc : ''),
'hook_afterarticle' => $this->item->event->afterDisplayContent,
'article' => '',
'tags' => '',
'edit' => '',
'url' => '',
'more' => '',
'previous' => '',
'next' => ''
);

// set author
$author = $this->item->created_by_alias ?: $this->item->author;
$args['author'] = ($params->get('show_author') && !empty($author))? $author : '';

// set author_url
if (!empty($this->item->contactid) && $params->get('link_author') == true) {
$needle = 'index.php?option=com_contact&view=contact&id=' . $this->item->contactid;
$menu = JFactory::getApplication()->getMenu();
$item = $menu->getItems('link', $needle, true);
$args['author_url'] = !empty($item)? $needle . '&Itemid=' . $item->id : $needle;
}

// set article
$article = "";
if ($params->get('access-view')) {

if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='0')) OR ($params->get('urls_position')=='0' AND empty($urls->urls_position) ))
OR (empty($urls->urls_position) AND (!$params->get('urls_position')))) {
$article .= $this->loadTemplate('links');
}

$article .= $this->item->text;

if (isset($urls) AND ((!empty($urls->urls_position)  AND ($urls->urls_position=='1')) OR ( $params->get('urls_position')=='1') )) {
$article .= $this->loadTemplate('links');
}

// optional teaser intro text for guests
} elseif ($params->get('show_noauth') == true AND $user->get('guest')) {

$article .= $this->item->introtext;

// optional link to let them register to see the whole article.
if ($params->get('show_readmore') && $this->item->fulltext != null) {
$link1 = JRoute::_('index.php?option=com_users&view=login');
$link = new JURI($link1);
$article .= '<p class="links">';
$article .= '<a href="'.$link.'">';
$attribs = json_decode($this->item->attribs);

if ($attribs->alternative_readmore == null) {
$article .= JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
} elseif ($readmore = $this->item->alternative_readmore) {
$article .= $readmore;
if ($params->get('show_readmore_title', 0)!= 0) {
$article .= JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
}
} elseif ($params->get('show_readmore_title', 0) == 0) {
$article .= JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
} else {
$article .= JText::_('COM_CONTENT_READ_MORE');
$article .= JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
}

$article .= '</a></p>';
}
}

$args['article'] = $article;

// set tags
$tags = '';
if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) {
JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');
foreach ($this->item->tags->itemTags as $i => $tag) {
if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) {
if($i > 0) $tags .= ', ';
$tags .= '<a href="'.JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . ':' . $tag->alias)).'">'.$this->escape($tag->title).'</a>';
}
}

}

$args['tags'] = $tags;

// set edit
if (!$this->print) {
$args['edit']  = $canEdit ? JHtml::_('icon.edit', $this->item, $params) : '';
$args['edit'] .= $params->get('show_print_icon')? JHtml::_('icon.print_popup', $this->item, $params) : '';
$args['edit'] .= $params->get('show_email_icon')? JHtml::_('icon.email', $this->item, $params) : '';
} else {
$args['edit'] = JHtml::_('icon.print_screen', $this->item, $params);
}

// set previous and next
if (!empty($this->item->pagination)) {
$args['previous'] = ($prev = $this->item->prev)? '<a href="'.$prev.'">'.JText::_('JGLOBAL_LT').' '.JText::_('JPREV').'</a>' : '';
$args['next'] = ($next = $this->item->next)? '<a href="'.$next.'">'.JText::_('JNEXT').' '.JText::_('JGLOBAL_GT').'</a>' : '';
}

// render template
echo $warp['template']->render('article', $args);
Вот тут описывается похожая проблема http://joomlaforum.ru/index.php/topic,282771.0.html но если я вставляю вот такой код
Код
<?php if ($params->get('show_modify_date')) : ?>
<dd class="modified">
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</dd>
<?php endif; ?>
то статья перестает открываться.
Подскажите как правильно и куда именно необходимо внести изменения.
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Проблема с доступом к шаблону сайта

Автор thas

Ответов: 4
Просмотров: 2368
Последний ответ 08.11.2019, 19:55:23
от stendapuss
Картинка в шаблоне

Автор Alkor94

Ответов: 13
Просмотров: 2551
Последний ответ 23.05.2018, 03:04:28
от Alkor94
Добавить позицию модуля в шаблоне traction

Автор amaddeus

Ответов: 1
Просмотров: 1675
Последний ответ 27.04.2017, 22:23:31
от darkghost
Не работает mega menu в шаблоне sj_jare

Автор premisse

Ответов: 5
Просмотров: 3713
Последний ответ 28.02.2017, 21:35:24
от ddenov
Проблема с шаблоном

Автор yura.yushkevich

Ответов: 2
Просмотров: 1200
Последний ответ 07.02.2017, 19:14:43
от istraweb