%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/public_bakcup/suporte/include/staff/templates/
Upload File :
Create Path :
Current File : /home/vacivi36/public_bakcup/suporte/include/staff/templates/thread-entries-preview.tmpl.php

<?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>&nbsp;<span><?php echo Format::datetime($entry->created) ?></span>
                    <?php if ($entry->number) { ?>
                        &nbsp;<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
} ?>

Zerion Mini Shell 1.0