mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
98918bc336
- Added new phrases where missing or hard coded - Fixed windowz new lines in /application/*
62 lines
1.4 KiB
PHP
62 lines
1.4 KiB
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'Read personal messages',
|
|
'jquery' => true,
|
|
'jqueryui' => true,
|
|
'bootstrap' => true,
|
|
'fontawesome' => true,
|
|
'sbadmintemplate' => true,
|
|
'momentjs' => true,
|
|
'tabulator' => true,
|
|
'ajaxlib' => true,
|
|
'dialoglib' => true,
|
|
'tinymce' => true,
|
|
'phrases' => array('global', 'ui'),
|
|
'customCSSs' => array('public/css/sbadmin2/admintemplate_contentonly.css', 'public/css/messaging/message.css'),
|
|
'customJSs' => array('public/js/bootstrapper.js', 'public/js/messaging/read.js')
|
|
)
|
|
);
|
|
?>
|
|
<body>
|
|
|
|
<fieldset>
|
|
|
|
<span id="toggleMessages" class="toggle">
|
|
|
|
<input type="radio" name="toggleMessages" id="received" checked>
|
|
<label for="received">
|
|
|
|
<?php echo $this->p->t('global', 'received'); ?>
|
|
|
|
</label>
|
|
|
|
<input type="radio" name="toggleMessages" id="sent">
|
|
<label for="sent">
|
|
|
|
<?php echo ucfirst($this->p->t('global', 'gesendet')); ?>
|
|
|
|
</label>
|
|
|
|
</span>
|
|
|
|
<span class="buttonsSpacer"></span>
|
|
|
|
<span>
|
|
<input id="writeMessage" type="button" value="<?php echo $this->p->t('ui', 'nachrichtSenden'); ?>">
|
|
|
|
<input id="replyMessage" type="button" value="<?php echo $this->p->t('global', 'reply'); ?>">
|
|
</span>
|
|
|
|
</fieldset>
|
|
|
|
|
|
<div id="lstMessagesPanel"></div>
|
|
|
|
<div id="readMessagePanel"></div>
|
|
|
|
</body>
|
|
|
|
<?php $this->load->view("templates/FHC-Footer"); ?>
|