mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 17:02:19 +00:00
messages kann als systemuser geschickt werden
This commit is contained in:
@@ -11,6 +11,7 @@ $widthColumn = $msgExists === true ? 8 : 12;
|
||||
<th><?php echo ucfirst($this->p->t('global','empfaenger')) ?></th>
|
||||
<th><?php echo ucfirst($this->p->t('global','betreff')) ?></th>
|
||||
<th><?php echo ucfirst($this->p->t('global','gelesenAm')) ?></th>
|
||||
<th><?php echo ucfirst($this->p->t('lehre','insert_von')) ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -21,6 +22,7 @@ $widthColumn = $msgExists === true ? 8 : 12;
|
||||
<td><?php echo $message->revorname.' '.$message->renachname ?></td>
|
||||
<td><?php echo $message->subject ?></td>
|
||||
<td><?php echo isset($message->statusamum) ? date_format(date_create($message->statusamum), 'd.m.Y H:i:s') : '' ?></td>
|
||||
<td><?php echo $message->insertvorname.' '.$message->insertnachname ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
|
||||
@@ -30,13 +30,29 @@
|
||||
</div>
|
||||
</div>
|
||||
<form id="sendForm" method="post" action="<?php echo site_url('/system/messages/Messages/sendImplicitTemplate'); ?>">
|
||||
<?php if($allowSenderChange) : ?>
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-lg-1 msgfield msgfieldcol-left">
|
||||
<label>
|
||||
<?php echo ucfirst($this->p->t('global', 'sender')); ?>:
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-lg-6 msgfieldcol-right">
|
||||
<div class="checkbox-inline">
|
||||
<input type="checkbox" name="systemuser" id="systemuser" />
|
||||
<?php echo "Systemuser?" ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-lg-1 msgfieldcol-left">
|
||||
<label>
|
||||
|
||||
<?php echo ucfirst($this->p->t('global', 'empfaenger')); ?>:
|
||||
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-lg-11 msgfieldcol-right">
|
||||
|
||||
@@ -30,6 +30,24 @@
|
||||
</div>
|
||||
</div>
|
||||
<form id="sendForm" method="post" action="<?php echo site_url('/system/messages/Messages/sendImplicitTemplate'); ?>">
|
||||
<?php if($allowSenderChange) : ?>
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-lg-1 msgfieldcol-left">
|
||||
<label>
|
||||
<?php echo ucfirst($this->p->t('global', 'sender')); ?>:
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-lg-6 msgfieldcol-right">
|
||||
<div class="checkbox-inline">
|
||||
<input type="checkbox" name="systemuser" id="systemuser">
|
||||
<?php echo "Systemuser?" ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-lg-1 msgfieldcol-left">
|
||||
@@ -98,11 +116,11 @@
|
||||
<br>
|
||||
<div class="form-group">
|
||||
<label>
|
||||
|
||||
|
||||
<?php echo ucfirst($this->p->t('ui', 'meineFelder')); ?>:
|
||||
|
||||
</label>
|
||||
|
||||
|
||||
<?php
|
||||
$size = count($user_fields) > 5 ? 5 : count($user_fields);
|
||||
echo $this->widgetlib->widget(
|
||||
|
||||
Reference in New Issue
Block a user