%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/comment/widgets/views/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/comment/widgets/views/comment.php |
<?php use humhub\libs\Html; use humhub\modules\comment\Module; use humhub\modules\comment\widgets\CommentControls; use humhub\modules\content\widgets\UpdatedIcon; use humhub\modules\comment\widgets\CommentEntryLinks; use humhub\modules\ui\view\components\View; use humhub\widgets\TimeAgo; use humhub\modules\content\widgets\richtext\RichText; use humhub\modules\user\widgets\Image as UserImage; use humhub\modules\file\widgets\ShowFiles; use humhub\modules\comment\widgets\Comments; /* @var $this View */ /* @var $comment \humhub\modules\comment\models\Comment */ /* @var $user \humhub\modules\user\models\User */ /* @var $deleteUrl string */ /* @var $editUrl string */ /* @var $loadUrl string */ /* @var $createdAt string */ /* @var $updatedAt string */ /* @var $class string */ /** @var Module $module */ $module = Yii::$app->getModule('comment'); ?> <div class="<?= $class; ?>" id="comment_<?= $comment->id; ?>" data-action-component="comment.Comment"> <hr class="comment-separator"> <?= CommentControls::widget(['comment' => $comment]) ?> <?= UserImage::widget(['user' => $user, 'width' => 25, 'htmlOptions' => ['class' => 'pull-left', 'data-contentcontainer-id' => $user->contentcontainer_id]]); ?> <div> <div class="media-body"> <h4 class="media-heading"> <?= Html::containerLink($user) ?> <small>· <?= TimeAgo::widget(['timestamp' => $createdAt]) ?> <?php if ($comment->isUpdated()): ?> · <?= UpdatedIcon::getByDated($comment->updated_at) ?> <?php endif; ?> </small> </h4> </div> <!-- class comment_edit_content required since v1.2 --> <div class="content comment_edit_content" id="comment_editarea_<?= $comment->id; ?>"> <div id="comment-message-<?= $comment->id; ?>" class="comment-message" data-ui-markdown data-ui-show-more data-read-more-text="<?= Yii::t('CommentModule.base', 'Read full comment...') ?>"> <?= RichText::output($comment->message, ['record' => $comment]); ?> </div> <?= ShowFiles::widget(['object' => $comment]); ?> </div> <div class="wall-entry-controls"> <?= CommentEntryLinks::widget(['object' => $comment]); ?> </div> <div class="nested-comments-root"> <?= Comments::widget(['object' => $comment]); ?> </div> </div> </div>