Файл: modules/user/shop.php
Строк: 35
<?php
/**
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) 2013, Taras Chornyi, Sergiy Mazurenko, Ivan Kotliar
* @link http://perf-engine.net
* @package PerfEngine
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
if(!User::logged())
{
go('/');
}
$locate = 'in_cabinet';
$title = _t('shop');
include_header($title);
Template::div('title', _t('shop'));
Template::div('menu', img('color_nick.png') .'<a href="/user/shop_color/">'. _t('color_nick') .'</a><br/>');
Template::div('block', NAV .'<a href="/user/panel/">'._t('user_panel').'</a><br/>' . HICO .'<a href="/">'. _t('home') .'</a>');
include_footer();
?>