Projekt

Obecné

Profil

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $title ?> | <?php echo $this->settings->get('title') ?></title>
<?php echo html::link('media/images/favicon_16x16.png', 'shorcut icon', 'image/png', FALSE); ?>
<?php echo html::stylesheet('media/css/style.css', 'screen and (min-device-width: 481px)') ?>
<?php echo html::stylesheet('media/css/tables.css', 'screen and (min-device-width: 481px)') ?>
<?php echo html::stylesheet('media/css/forms.css', 'screen and (min-device-width: 481px)') ?>
<!--[if IE]>
<?php echo html::stylesheet('media/css/style.css', 'screen') ?>
<?php echo html::stylesheet('media/css/tables.css', 'screen') ?>
<?php echo html::stylesheet('media/css/forms.css', 'screen') ?>
<![endif]-->
<?php echo html::stylesheet('media/css/m.style.css', 'handheld, only screen and (max-device-width: 480px)') ?>
<?php echo html::stylesheet('media/css/m.tables.css', 'handheld, only screen and (max-device-width: 480px)') ?>
<?php echo html::stylesheet('media/css/m.forms.css', 'handheld, only screen and (max-device-width: 480px)') ?>
<?php echo html::stylesheet('media/css/print.css', 'print') ?>
<?php echo html::stylesheet('media/css/jquery.validate.password.css') ?>
<?php echo html::stylesheet('media/css/jquery-ui.css') ?>
<?php echo html::script('media/js/jquery.min', FALSE) ?>
<?php echo html::script('media/js/jquery-ui.min', FALSE) ?>
<?php echo html::script('media/js/jquery.ui.datepicker-cs', FALSE) ?>
<?php echo html::script('media/js/jquery.validate.min', FALSE) ?>
<?php echo html::script('media/js/jquery.validate.password', FALSE) ?>
<?php echo html::script('media/js/jquery.metadata', FALSE) ?>
<?php echo html::script('media/js/jquery.tablesorter', FALSE) ?>
<?php echo html::script('media/js/jquery.form.min', FALSE) ?>
<?php echo html::script('media/js/jquery.timer', FALSE) ?>
<?php echo html::script('media/js/messages_cs', FALSE) ?>
<?php echo html::script('media/js/php.min', FALSE) ?>
<script type="text/javascript" src="<?php echo url_lang::base() .'js/' . url_lang::current() . (empty($_SERVER['QUERY_STRING']) ? '' : '?' . $_SERVER['QUERY_STRING']) ?>"></script>
<?php if (!$this->popup && TextEditor::$instance_counter): ?>
<?php echo html::script('media/js/tinymce/tiny_mce', FALSE) ?>
<script type="text/javascript"><!--
// set up of tinyMCE only if pop up is not on
tinyMCE.init({
// General options
entity_encoding : "raw",
mode : "textareas",
theme : "advanced",
editor_selector : "wysiwyg",
editor_deselector : "textarea",
plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
elements : "registration_license",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false,
height : "480px",
width : "656px"
});
--></script>
<?php endif; ?>
<?php if (isset($_GET['drop_down_dom_id']) && isset($_GET['object_name'])): ?>
<script type="text/javascript"><!--

var dropdown_obj = opener.document.getElementById('<?php echo $_GET['drop_down_dom_id'] ?>');

if (dropdown_obj)
{
<?php if (($obj_name = $_GET['object_name']) && isset($$obj_name)): ?>
var value = '<?php echo text::object_format($$obj_name, '{id}') ?>';
var text = '<?php echo text::object_format($$obj_name, @$_GET['el_format']) ?>';
dropdown_obj.options[dropdown_obj.options.length] = new Option(text, value, true);
dropdown_obj.selectedIndex = dropdown_obj.options.length - 1;
self.close();
<?php endif ?>
}
--></script>
<?php endif ?>
</head>
<body>
<?php if (!$this->popup): ?>
<div id="main">
<div id="header">
<h1 id="logo"><span>Free<em>Net</em>IS</span></h1>
<div class="separator1"></div>
<div class="status">
<span><?php echo $this->user_id ? __('Logged user') : __('Unlogged user') ?></span>&nbsp;
<a href="<?php echo url_lang::base() ?>languages/change" title="<?php echo __('Change language') ?>" class="change_language_link"><img src="<?php echo url::base() ?>media/images/flags/<?php echo Config::get('lang') ?>.jpg" alt="<?php echo __('Change language') ?>" class="change_language_link"/></a> |
<?php
if ($this->user_id)
{
$title = __('Mail inbox');
$src = 'media/images/inbox.png';
if ($this->unread_user_mails)
{
$title .= ' ('.$this->unread_user_mails.')';
$src = 'media/images/inbox_warning.png';
}
echo html::anchor('mail/inbox', html::image(array
(
'src' => $src,
'alt' => $title,
'title' => $title
))) . ' | ';
}

?>
<a href="javascript: window.print();"><img src="<?php echo url::base() ?>media/images/print.png" alt="print icon" /></a>

<?php
/* if ($this->session->get('user_id', 0))
{
$model_sms_message = new Sms_message_Model();
// @todo unuset get - replace by count
$unread_sms = count($model_sms_message->get_unread_messages());
if ($unread_sms)
echo html::anchor(url_lang::base().'sms/show_unread', ($unread_sms != 0 )?'<b class="orange" >SMS('.$unread_sms.')</b>':'SMS()', array('class' => 'orange', 'style' => 'margin-left: 20px;text-decoration: none;', 'title' => __('Show unread messages')));
}*/
?>
<table>
<tr>
<td class="orange"><?php echo $this->user_id ? __('Name').':' : '' ?></td>
<td class="bold">&nbsp;<?php echo $this->session->get('user_full_name') ?>&nbsp;(<?php echo $this->session->get('member_login') ?>)</td>
</tr>
<tr>
<td class="orange"><?php echo __('IP address').':' ?></td>
<td class="bold">&nbsp;<?php echo $this->ip_address_span ?></td>
</tr>
</table>
</div>

<div class="logout">
<span><?php echo $this->user_id ? html::anchor('login/logout/', __('Logout')) : html::anchor('login', __('Login')) ?></span>
</div>
</div>

<div id="middle">
<a href="#" id="a_show_menu"><?php echo __('Show menu') ?></a>
<div id="menu">
<div id="menu-padd">
<?php
if ($this->user_id):
echo form::open(url_lang::base().'search', array('method' => 'get', 'autocomplete' => 'off', 'class' => 'search'));
echo form::input('keyword',(isset($keyword) ? $keyword : ''));
echo form::imagebutton('search_submit', url::base().'media/images/icons/search.gif');
echo form::close();
?>
<div id="whisper"></div>
<?php
echo new View('menu');
endif
?>
</div>
</div>

<div id="content">
<div id="content-padd">
<?php echo status::render() ?>
<?php if (isset($breadcrumbs)): ?>
<span class="breadcrumbs"><?php echo $breadcrumbs ?></span><br /><br />
<?php endif ?>
<?php echo $content ?>
</div>
</div>

<div class="clear"></div>
</div>

<div id="footer" class="noprint">
<div id="footer-padd">
<p style="float:left; margin-left:10px;"><?php echo html::anchor("http://www.freenetis.org/", __('Project site')) ?></p>
<p style="float:right; margin-right:10px;"><?php echo Kohana::lang('core.stats_footer').' '.__('Revision').': '.$this->current_svn_revision ?></p>
<div class="clear"></div>
</div>
</div>
</div>
<?php else: ?>
<?php if (!$this->dialog): ?>
<div id="content" class="popup">
<div id="content-padd">
<?php echo $content ?>
</div>
</div>
<?php else: ?>
<?php echo $content ?>
<?php endif ?>
<?php endif ?>

</body>
</html>
(23-23/63)