Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/reviews/add.thtml
blob: c97731a4e69e7127e7267df9a9cd4adb392e12a8 (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/* ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is addons.mozilla.org site.
 *
 * The Initial Developer of the Original Code is
 * The Mozilla Foundation.
 * Portions created by the Initial Developer are Copyright (C) 2006
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *   Frederic Wenzel <fwenzel@mozilla.com> (Original Author)
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */ 
?>
<div id="content">
    <?=$this->renderElement('search')?>
    <?=$this->renderElement('sidebar', array('pitch' => true))?>
    <?=$this->renderElement('app_chooser')?>
    
    <div id="content-main">
    
<h1><?=sprintf((@$this->data['Review']['id'] > 0) ? _('addon_review_edit_title') : _('addon_review_add_title'), $addon['Translation']['name']['string']); ?></h1>

<?php echo sprintf(___('review_guidelines_short', <<<EOT
<p>Keep these tips in mind:</p>
<ul>
<li>Write like you're telling a friend about your experience with the add-on. 
Give specifics and helpful details, such as what features you liked and/or
disliked, how easy to use it is, and any disadvantages it has.  Avoid generic
language such as calling it "Great" or "Bad" unless you can give reasons why
you believe this is so.</li>
<li>Please do not post bug reports in reviews. We do not make your email address
available to add-on developers and they may need to contact you to help resolve
your issue. See the <a href="%1\$s">support section</a> to find out where to get
assistance for this add-on.</li>
<li>Please keep reviews clean, avoid the use of improper language and do not
post any personal information.</li>
</ul>
<p>Please read the <a href="%2\$s">Review Guidelines</a> for more detail about
user add-on reviews.</p>
EOT
), $html->url("/addon/{$addon['Addon']['id']}#support"),
    $html->url('/pages/review_guide')); /* @partial, 6/22/08 */ ?>

<? // if this is a developer reply, show the original review
if (!empty($reply_to)) {
    echo "<p>"._('addon_review_in_reply_to')."</p>";
    ?>
    <div class="corner-box">
    <h3><?=$reply_to['Translation']['title']['string']?></h3>
    
    <div class="reviewed-on">
        <?= sprintf(_('addon_reviewed_on_x_rated_y'), $html->linkUserFromModel($reply_to['User']), strftime(_('date'), strtotime($reply_to['Review']['created'])), $reply_to['Review']['rating'])?>
    </div>
    <?=nl2br($reply_to['Translation']['body']['string'])?>
    </div>
<? } ?>

<? if (isset($errorMessage)):?>
<div class="amo-form-error"><?= _('error_formerrors')?></div>
<p></p>
<? endif;?>

<form action="<?=$html->entities($html->url())?>" method="post" class="amo-form corner-box" id="long-review">
    <?=$html->hiddenSession() ?>       
    <?=$html->hidden('Review/id'); ?>
    <div>
        <label class="amo-label-large" for="ReviewTitle"><?=_('addon_review_add_title_field')?></label>
        <?=$html->input('Review/title');?>
        <?=$html->tagErrorMsg('Review/title', _('error_field_required'))?>
    </div>
    <? if (empty($reply_to)): ?>
    <div>
        
        <label class="amo-label-large rating" for="ReviewRating"><?=_('addon_review_add_rating_field')?></label>
		<div class="stars degrade">
            <p><input class="star" type="radio" name="data[Review][rating]" value="1" title="<?=_('addons_display_hate_it')?>" 
            <?php if($reviewRating == 1) { ?> checked="checked"<?php } ?>/> <?=_('addons_display_hate_it')?></p>
            <p><input class="star" type="radio" name="data[Review][rating]" value="2" title="<?=_('addons_display_dont_like_it')?>"  
            <?php if($reviewRating == 2) { ?> checked="checked"<?php } ?>/> <?=_('addons_display_dont_like_it')?></p>
            <p><input class="star" type="radio" name="data[Review][rating]" value="3" title="<?=_('addons_display_like_it')?>"  
            <?php if($reviewRating == 3) { ?> checked="checked"<?php } ?>/> <?=_('addons_display_like_it')?></p>
            <p><input class="star" type="radio" name="data[Review][rating]" value="4" title="<?=_('addons_display_really_like_it')?>"
            <?php if($reviewRating == 4) { ?> checked="checked"<?php } ?>/> <?=_('addons_display_really_like_it')?></p>
            <p><input class="star" type="radio" name="data[Review][rating]" value="5" title="<?=_('addons_display_love_it')?>" 
            <?php if($reviewRating == 5) { ?> checked="checked"<?php } ?>/> <?=_('addons_display_love_it')?></p>
		</div>
        <?=$html->tagErrorMsg('Review/rating', _('error_review_rating_required'))?>
    </div>
    <? endif; ?>
    <div>
        <label class="amo-label-large" for="ReviewBody"><?=_('addon_review_add_review_field')?></label>
        <?=$html->textarea('Review/body', array('cols'=>50, 'rows'=>5));?>
        <?=$html->tagErrorMsg('Review/body', _('error_field_required'))?>
    </div>
    <p></p>
    <?=$html->submit(_('addon_review_add_submit'), array('class'=>'amo-submit'))?>
</form>

<div class="divider"><hr></div>

<ul>
    <li><?= $html->link(sprintf(_('addon_review_a_back_to_reviews'), $addon['Translation']['name']['string']), '/reviews/display/'.$addon['Addon']['id']); ?></li>
    <li><?= $html->link(sprintf(_('addon_review_a_back_to_addon_x'), $addon['Translation']['name']['string']), '/addon/'.$addon['Addon']['id']); ?></li>
</ul>

     </div>
 </div>
 <script type="text/javascript" charset="utf-8">
 	$(function(){ $('.stars').rating(); });
 </script>