PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
newscomment
<?php if ($this->comment_disabled == 0) { echo "<p>Comments are disabled for this item.</p>"; } else { ?> <div class="comment"> <div class="comment_box"> <ul class="comment_list"> <?php foreach ($this->list_data as $comment) { $this->includeViewFile('newscomment_item', array('comment' => $comment)); } ?> </ul> </div> <div class="comment_form_wrap"> <H2><?php echo Yii::t('module', 'Leave your comment') ?></H2> <?php $form = new NewsCommentForm(); $form->module_id = $this->page_id; $form->news_id = $this->news_id; $form->parent_id = 0; $this->includeViewFile('newscomment_form', array('form' => $form)); ?> </div> </div> <script type="text/javascript"> $('#<?php echo $this->page_id ?> form').forms({type:'comment'}); </script> <?php } ?>
[+]
..
[-] frontend_view.php
[edit]
[-] frontend_class.php
[edit]
[-] backend.php
[edit]
[-] frontend_script.php
[edit]
[-] backend.js
[edit]