init
This commit is contained in:
commit
db400e4a38
2750 changed files with 440400 additions and 0 deletions
|
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
$entryTypes = ThreadEntry::getTypes();
|
||||
$entries = $ticket->getThread()->getEntries();
|
||||
$entries->filter(array('type__in' => array_keys($entryTypes)))->order_by('-created')->limit(6);
|
||||
$i = 0;
|
||||
foreach ($entries as $entry) {
|
||||
$user = $entry->getUser() ?: $entry->getStaff();
|
||||
$name = $user ? $user->getName() : $entry->poster;
|
||||
$i++;
|
||||
?>
|
||||
<div id="thread-entry-<?php echo $enry->id; ?>">
|
||||
<div class="thread-preview-entry <?php
|
||||
echo $i>2 ? 'collapsed ' : ' ';
|
||||
echo $entryTypes[$entry->type]; ?>">
|
||||
<div class="header">
|
||||
<div class="thread-info">
|
||||
<div class="thread-name">
|
||||
<span><?php echo $name; ?></span> <span><?php echo Format::datetime($entry->created) ?></span>
|
||||
<?php if ($entry->number) { ?>
|
||||
<span data-toggle="tooltip" title="<?php echo sprintf(__('Ticket #%s'), $entry->number); ?>" class="label label-bare">
|
||||
<i class="icon-code-fork"></i></span>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="thread-body no-pjax">
|
||||
<div class="thread-teaser">
|
||||
<?php echo $entry->getBody()->toHtml(); ?>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<?php
|
||||
$atts = isset($thread_attachments) ?
|
||||
$thread_attachments[$entry->id] : $entry->attachments;
|
||||
if (isset($atts) && $atts) {
|
||||
?>
|
||||
<div class="attachments"><?php
|
||||
foreach ($atts as $A) {
|
||||
if ($A->inline)
|
||||
continue;
|
||||
$size = '';
|
||||
if ($A->file->size)
|
||||
$size = sprintf('<small class="filesize faded">%s</small>', Format::file_size($A->file->size));
|
||||
?>
|
||||
<span class="attachment-info">
|
||||
<i class="icon-paperclip icon-flip-horizontal"></i>
|
||||
<a class="no-pjax truncate filename" href="<?php echo $A->file->getDownloadUrl();
|
||||
?>" download="<?php echo Format::htmlchars($A->getFilename()); ?>"
|
||||
target="_blank"><?php echo Format::htmlchars($A->getFilename());
|
||||
?></a><?php echo $size;?>
|
||||
</span>
|
||||
<?php }
|
||||
echo '</div><div class="clear"></div>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
} ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue