comment-wrapper.tpl.php
2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* @file
* Default theme implementation to provide an HTML container for comments.
*
* Available variables:
* - $content: The array of content-related elements for the node. Use
* render($content) to print them all, or
* print a subset such as render($content['comment_form']).
* - $classes: String of classes that can be used to style contextually through
* CSS. It can be manipulated through the variable $classes_array from
* preprocess functions. The default value has the following:
* - comment-wrapper: The current template type, i.e., "theming hook".
* - $title_prefix (array): An array containing additional output populated by
* modules, intended to be displayed in front of the main title tag that
* appears in the template.
* - $title_suffix (array): An array containing additional output populated by
* modules, intended to be displayed after the main title tag that appears in
* the template.
*
* The following variables are provided for contextual information.
* - $node: Node object the comments are attached to.
* The constants below the variables show the possible values and should be
* used for comparison.
* - $display_mode
* - COMMENT_MODE_FLAT
* - COMMENT_MODE_THREADED
*
* Other variables:
* - $classes_array: Array of html class attribute values. It is flattened
* into a string within the variable $classes.
*
* @see template_preprocess_comment_wrapper()
*
* @ingroup themeable
*/
?>
<div id="comments_wrapper" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<?php if($node->type =="article") :?>
<?php if ($content['comments']): ?>
<div class="widget-title">
<h3>
<?php
print $node->comment_count;
print t(' Comments');
print " - ".$node->title;
?>
</h3>
</div>
<?php endif; ?>
<?php print render($content['comments']); ?>
<?php if ($content['comment_form']): ?>
<div class="widget-title">
<h3>Leave a comment</h3>
<hr>
</div>
<?php print render($content['comment_form']); ?>
<?php endif; ?>
<?php endif; ?>
<?php if($node->type === "product_display") :?>
<ul class="media-list">
<?php print render($content['comments']); ?>
</ul>
<?php if ($content['comment_form']): ?>
<hr>
<h2 class="title text-center">
<span>Submit your review</span>
</h2>
<?php print render($content['comment_form']); ?>
<?php endif; ?>
<?php endif; ?>
</div>