Шаблон написан в Artisteer 2.6, на сайт установился, но при попытке установить его по умолчанию выдает ошибку Fatal error: Cannot access protected property ContentViewArticle::$user in Z: \home\localhost\www\Podarki2.5\temlates\stekloart\functions.php on line 462 Сайт лежит на денвере, джумла 2,5 В соответствующей строке: Код (PHP): $this->canEdit = $this->_component->user->authorize('com_content', 'edit', 'content', 'all') Вот строка в контексте, так сказать: Код (PHP): class ArtxContentArticleView15 extends ArtxContentGeneralArticleView { function __construct($component, $componentParams, $article, $print) { parent::__construct($component, $componentParams, $article); $this->print = $print; $this->canEdit = $this->_component->user->authorize('com_content', 'edit', 'content', 'all') || $this->_component->user->authorize('com_content', 'edit', 'content', 'own'); $this->title = $this->_article->title; $this->titleVisible = $this->_componentParams->get('show_title') && strlen($this->title); $this->titleLink = $this->_componentParams->get('link_titles') && '' != $this->_article->readmore_link ? $this->_article->readmore_link : ''; $this->showCreateDate = $this->_componentParams->get('show_create_date'); $this->showModifyDate = 0 != intval($this->_article->modified) && $this->_componentParams->get('show_modify_date'); $this->showPublishDate = false; // - not available in J! 1.5 $this->showAuthor = $this->_componentParams->get('show_author') && '' != $this->_article->author; $this->showPdfIcon = $this->_componentParams->get('show_pdf_icon'); $this->showPrintIcon = $this->_componentParams->get('show_print_icon'); $this->showEmailIcon = $this->_componentParams->get('show_email_icon'); $this->showHits = false; // - not available in J! 1.5 $this->showUrl = $this->_componentParams->get('show_url') && $this->_article->urls; $this->showIntro = $this->_componentParams->get('show_intro'); $this->showReadmore = false; // - no readmore in article $this->showParentCategory = $this->_componentParams->get('show_section') && $this->_article->sectionid && isset($this->_article->section); $this->parentCategory = $this->showParentCategory ? $this->_article->section : ''; $this->parentCategoryLink = ($this->showParentCategory && $this->_componentParams->get('link_section')) ? JRoute::_(ContentHelperRoute::getSectionRoute($this->_article->sectionid)) : ''; $this->showCategory = $this->_componentParams->get('show_category') && $this->_article->catid; $this->category = $this->showCategory ? $this->_article->category : ''; $this->categoryLink = ($this->showCategory && $this->_componentParams->get('link_category')) ? JRoute::_(ContentHelperRoute::getCategoryRoute($this->_article->catslug, $this->_article->sectionid)) : ''; } Что с этим делать? Как исправить, чтобы шаблон заработал? (До этого в этой программе делала шаблоны для WP, все устанавливалось и работало без проблем)
Учитесь делать шаблоны самостоятельно и всё будет работать. В интернете и на нашем форуме масса информации по этому поводу. Если хотите работать с шаблонами в любом случае придётся учить HTML и CSS. Если не хотите учиться - поручите шаблоны специалистам. P.S.: Проблемы после работы с шаблонами для CMS в Artisteer отнимают массу полезного время у сообщества, поэтому ещё раз рекомендую всем оставлять вопросы об Artisteer без ответа. Давайте будем думать о реальных проблемах.