Шаблон после обновления с 1.03 до 1.04 не отображается
Шаблон можно будет по править в любой момент)
cmsPrintSitename();
$this->printSitename();
Код PHP:
cmsPrintSitename();
и менять на
Код PHP:
$this->printSitename();
Ну это как минимум...
Если у меня подключались блоки вот так <?php cmsModule("название_позиции");?>, то Module так и останется, или надо менять на Modules?
<?php /* * Доступны объекты $inCore $inUser $inPage($this) $inConf $inDB */ // Получаем количество модулей на нужные позиции $mod_count['top'] = $this->countModules('top'); $mod_count['topmenu'] = $this->countModules('topmenu'); $mod_count['sidebar'] = $this->countModules('sidebar'); // подключаем jQuery и js ядра в самое начало $this->prependHeadJS('core/js/common.js'); $this->prependHeadJS('includes/jquery/jquery.js'); // Подключаем стили шаблона $this->addHeadCSS('templates/'.TEMPLATE.'/css/reset.css'); $this->addHeadCSS('templates/'.TEMPLATE.'/css/text.css'); $this->addHeadCSS('templates/'.TEMPLATE.'/css/960.css'); $this->addHeadCSS('templates/'.TEMPLATE.'/css/styles.css'); // Подключаем colorbox (просмотр фото) $this->addHeadJS('includes/jquery/colorbox/jquery.colorbox.js'); $this->addHeadCSS('includes/jquery/colorbox/colorbox.css'); $this->addHeadJS('includes/jquery/colorbox/init_colorbox.js'); // LANG фразы для colorbox $this->addHeadJsLang(array('CBOX_IMAGE','CBOX_FROM','CBOX_PREVIOUS','CBOX_NEXT','CBOX_CLOSE','CBOX_XHR_ERROR','CBOX_IMG_ERROR', 'CBOX_SLIDESHOWSTOP', 'CBOX_SLIDESHOWSTART')); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <?php $this->printHead(); ?> <?php if($inUser->is_admin){ ?> <script src="/admin/js/modconfig.js" type="text/javascript"></script> <script src="/templates/<?php echo TEMPLATE; ?>/js/nyromodal.js" type="text/javascript"></script> <link href="/templates/<?php echo TEMPLATE; ?>/css/modconfig.css" rel="stylesheet" type="text/css" /> <link href="/templates/<?php echo TEMPLATE; ?>/css/nyromodal.css" rel="stylesheet" type="text/css" /> <?php } ?> </head> <body> <?php if ($inConf->siteoff && $inUser->is_admin) { ?> <div style="margin:4px; padding:5px; border:solid 1px red; background:#FFF; position: fixed;opacity: 0.8; z-index:999"><?php echo $_LANG['SITE_IS_DISABLE']; ?></div> <?php } ?> <div id="container"> <div id="header"> <?php if (!$inUser->id){ ?> <div class="mod_user_menu"> <span class="register"><a href="/registration">Регистрация</a></span> <span class="login"><a href="/login">Вход</a></span> </div> <?php } else { ?> <?php $this->printModules('header'); ?> <?php } ?> <div style="width: 100%; height: 90px; overflow: hidden; margin-top: 10px;"> <div id="sitename"><a href="/"></a></div> <div style="width: 535px; height: 90px; float: right; margin-left: 40px;"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Тюряга --> <ins class="adsbygoogle" style="display:inline-block; width:468px; height:60px" data-ad-client="ca-pub-0283099713072723" data-ad-slot="1220793011"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- <?php cmsModule('banner'); ?> --> </div> <div style="width: 50px; float: right;"> </div> <div style="clear: both;"></div> </div> <div id="auth_mod"> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <form id="sform"action="/search" method="GET" enctype="multipart/form-data" style="clear:both"> <input type="hidden" name="view" value="search"/> <input id="find_txt" name="query" type="text" tabindex="1" onfocus="if(this.value=='Поиск...') this.value='';" onblur="if(this.value=='') this.value='Поиск...';" value="Поиск..." maxlength="200"/> </td> <td width="60px" valign="top" align="left"> <input id="find_but" name="gosearch" type="submit" alt="Поиск" value="" onclick="document.searchform.submit()"/> </form> </td> <?php if (!$inUser->id){ ?> <td width="300px"> <div> <?php cmsModule('auth'); ?> </div> </td> <? } ?> </tr> </table> </div> <div style="clear: both;"></div> </div> <div id="center"> <div style="width: 100%; height: 265px;"> <div id="topmenu1"><font color="#ffffff">Наш онлайн бот для тюряги - <b><a style="color: #ffffff" rel="nofollow" target="_blank" href="http://prahin.ru/">Пряхин.ру</a></b> (начинаем работать =))</font></div> <div id="topmenu"> <?php $this->printModules('topmenu'); ?> </div> <div style="width: 375px; height: 140px; padding: 10px; margin-left: 185px; margin-top: 10px; overflow: hidden; float: left;" id="usr"> <?php $this->printModules('user1'); ?> </div> <div style="width: 415px; height: 140px; padding: 10px; margin-top: 10px; overflow: hidden; float: right;" id="usr"> <?php $this->printModules('user2'); ?> </div> <div style="clear: both;"></div> </div> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <? if($mod_count['left']) {?> <td width="200px" valign="top" style="background: #e5e5e5;"> <div id="left"> <?php $this->printModules('left'); ?> </div> </td> <? } ?> <td valign="top" style="background: #fff;"> <div id="pathway"> <?php cmsPathway('→'); ?> </div> <div id="main"> <?php cmsModule('maintop'); ?> <?php $messages = cmsCore::getSessionMessages(); ?> <?php if ($messages) { ?> <div class="sess_messages"> <?php foreach($messages as $message){ ?> <?php echo $message; ?> <?php } ?> </div> <?php } ?> <?php cmsBody(); ?> <?php cmsModule('mainbottom'); ?> <div style="width: 50%; float: left;"> <?php $this->printModules('user3'); ?> </div> <div style="width: 50%; float: left;"> <?php cmsModule('user4'); ?> </div> <div style="clear: both;"></div> </div> </td> <? if($mod_count['sidebar']) {?> <td width="275px" valign="top" style="background: #e5e5e5;"> <div id="sidebar"> <div id="video"> <?php $this->printModules('video'); ?> </div> <?php $this->printModules('sidebar'); ?> </div> </td> <? } ?> </tr> </table> </div> <div style="width: 100%; height: 190px;"></div> </div> <div id="footer"> <div id="topmenu2"> <?php $this->printModules('topmenu1'); ?> </div> <div id="sitename1"><a href="/"></a></div> <div style="width: 550px; height: 130px; float: left; margin-top: 25px;"> <?php $this->printModules('footer1'); ?> </div> <div style="width: 120px; height: 130px; float: right; margin-top: 25px; margin-right: 10px; overflow: hidden;"> <?php $this->printModules('footer2'); ?> </div> </div> <script type="text/javascript"> $(document).ready(function(){ $('#topmenu .menu li').hover( function() { $(this).find('ul:first').show(); $(this).find('a:first').addClass("hover"); }, function() { $(this).find('ul:first').hide(); $(this).find('a:first').removeClass("hover"); } ); }); </script> </body></html>