zen cart实现匿名评论功能

 

zen cart实现匿名评论功能,在网上找了很多,不过很多符号是全角的,以下是在原文的基础上把对应的符号改过来的。

 

最近需要这个功能,下载了几个插件,安装了无用,用了一天时间,在zencart英文网找到以下代码,

希望可以帮到有需要的人.

一、把以下代码,作为:includes/templates/yourtemplate/templates/tpl_product_reviews_write_default.php,

<?php
/**
* Page Template
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_product_reviews_write_default.php 4365 2006-09-03 19:16:58Z wilt $
*/
?>
<div id="reviewsWrite">
<?php echo zen_draw_form('product_reviews_write',zen_href_link(FILENAME_PRODUCT_REVIEWS_WRITE,'action=process&products_id=' . $_GET['products_id'],'SSL'),'post','οnsubmit="return checkForm(product_reviews_write);"'); ?>
<!–bof Main Product Image –>
<?php
if (zen_not_null($products_image)) {
?>
<div id="reviewWriteMainImage"><?php
/**
* display the main product image
*/
require($template->get_template_dir('/tpl_modules_main_product_image.php',DIR_WS_TEMPLATE,$current_page_base,'templates'). '/tpl_modules_main_product_image.php'); ?>
</div>
<?php
//} else {
?>
<?php
}
?>
<!–eof Main Product Image–>
<div>
<div id="reviewsWriteProductPageLink"><?php echo '<a href="' . zen_href_link(zen_get_info_page($_GET['products_id']),zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_GOTO_PROD_DETAILS ,BUTTON_GOTO_PROD_DETAILS_ALT) . '</a>'; ?></div>
<div><?php echo '<a href="' . zen_href_link(FILENAME_REVIEWS) . '">' . zen_image_button(BUTTON_IMAGE_REVIEWS,BUTTON_REVIEWS_ALT) . '</a>'; ?></div>
</div>
<h1 id="reviewsWriteHeading"><?php echo $products_name . $products_model; ?></h1>
<h2 id="reviewsWritePrice"><?php echo $products_price; ?></h2>
<?php
if ($_SESSION['customer_id']) {?>
<h3 id="reviewsWriteReviewer">
<?php echo SUB_TITLE_FROM,zen_output_string_protected($customer->fields['customers_firstname'] . ' ' . $customer->fields['customers_lastname']); ?>
</h3>
<?php } ?>
<br />
<?php if ($messageStack->size('review_text') > 0) echo $messageStack->output('review_text');
?>
<div id="reviewsWriteReviewsRate"><?php echo SUB_TITLE_RATING; ?></div>
<div>
<?php echo zen_draw_radio_field('rating', '1', '', 'id="rating-1"'); ?>
<?php echo '<label for="rating-1">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_ONE,DIR_WS_TEMPLATE,$current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_ONE,OTHER_REVIEWS_RATING_STARS_ONE_ALT) . '</label> '; ?>
<?php echo zen_draw_radio_field('rating','2','','id="rating-2"'); ?>
<?php echo '<label for="rating-2">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_TWO,DIR_WS_TEMPLATE,$current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_TWO,OTHER_REVIEWS_RATING_STARS_TWO_ALT) . '</label>'; ?>
<?php echo zen_draw_radio_field('rating','3','','id="rating-3"'); ?>
<?php echo '<label for="rating-3">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_THREE,DIR_WS_TEMPLATE,$current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_THREE,OTHER_REVIEWS_RATING_STARS_THREE_ALT) . '</label>'; ?>
<?php echo zen_draw_radio_field('rating','4','','id="rating-4"'); ?>
<?php echo '<label for="rating-4">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FOUR,DIR_WS_TEMPLATE,$current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FOUR,OTHER_REVIEWS_RATING_STARS_FOUR_ALT) . '</label>'; ?>
<?php echo zen_draw_radio_field('rating','5','','id="rating-5"'); ?>
<?php echo '<label for="rating-5">' . zen_image($template->get_template_dir(OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE,DIR_WS_TEMPLATE,$current_page_base,'images'). '/' . OTHER_IMAGE_REVIEWS_RATING_STARS_FIVE,OTHER_REVIEWS_RATING_STARS_FIVE_ALT) . '</label>'; ?>
</div>
<label id="textAreaReviews" for="review-text"><?php echo SUB_TITLE_REVIEW; ?></label>
<?php echo zen_draw_textarea_field('review_text',60,5,'','id="review-text"');
if (!$_SESSION['customer_id']) {
?>
<br />
<label id="textAreaNume" for="review-nume"><?php echo TEXT_REVIEW_NAME; ?></label>
<br />
<input type="text" name="review-nume" size = "33" maxlength = "62" id="review-nume" />
<?php
}
?>
<div><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT,BUTTON_SUBMIT_ALT); ?></div>
<br />

<div id="reviewsWriteReviewsNotice"><?php echo TEXT_NO_HTML . (REVIEWS_APPROVAL == '1' ? '<br />' . TEXT_APPROVAL_REQUIRED: ''); ?></div>

</form>
</div>

二,把以上代码作为:modules/pages/product_reviews_write/header.php

<?php

$zco_notifier->notify('NOTIFY_HEADER_START_PRODUCT_REVIEWS_WRITE');

//if (!$_SESSION['customer_id']) {
// $_SESSION['navigation']->set_snapshot();
// zen_redirect(zen_href_link(FILENAME_LOGIN, ", 'SSL'));
//}

require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));

$product_info_query = "SELECT p.products_id, p.products_model, p.products_image,
p.products_price, p.products_tax_class_id, pd.products_name
FROM " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
WHERE p.products_id = :productsID
AND p.products_status = '1'
AND p.products_id = pd.products_id
AND pd.language_id = :languagesID";

$product_info_query = $db->bindVars($product_info_query, ':productsID', $_GET['products_id'], 'integer');
$product_info_query = $db->bindVars($product_info_query, ':languagesID', $_SESSION['languages_id'], 'integer');
$product_info = $db->Execute($product_info_query);

if (!$product_info->RecordCount()) {
zen_redirect(zen_href_link(FILENAME_PRODUCT_REVIEWS, zen_get_all_get_params(array('action'))));
}

$customer_query = "SELECT customers_firstname, customers_lastname, customers_email_address
FROM " . TABLE_CUSTOMERS . "
WHERE customers_id = :customersID";

$customer_query = $db->bindVars($customer_query, ':customersID', $_SESSION['customer_id'], 'integer');
$customer = $db->Execute($customer_query);

if (isset($_GET['action']) && ($_GET['action'] == 'process')) {
$rating = zen_db_prepare_input($_POST['rating']);
$review_text = zen_db_prepare_input($_POST['review_text']);
$review_name = zen_db_prepare_input($_POST['review-nume']);

$error = false;
if ((strlen($review_name) < 3)&(!$_SESSION['customer_id'])) {
$error = true;
$messageStack->add('review_text', JS_REVIEW_NAME);
}
if (strlen($review_text) < REVIEW_TEXT_MIN_LENGTH) {
$error = true;

$messageStack->add('review_text', JS_REVIEW_TEXT);
}

if (($rating < 1) || ($rating > 5)) {
$error = true;

$messageStack->add('review_text', JS_REVIEW_RATING);
}

if ($error == false) {
if (REVIEWS_APPROVAL == '1') {
$review_status = '0';
} else {
$review_status = '1';
}

$sql = "INSERT INTO " . TABLE_REVIEWS . " (products_id, customers_id, customers_name, reviews_rating, date_added, status)
VALUES (:productsID, :customersID, :customersName, :rating, now(), " . $review_status . ")";

$sql = $db->bindVars($sql, ':productsID', $_GET['products_id'], 'integer');
if (!$_SESSION['customer_id']) {
$sql = $db->bindVars($sql, ':customersID', 0, 'integer');
}
else{
$sql = $db->bindVars($sql, ':customersID', $_SESSION['customer_id'], 'integer');
}
if (!$_SESSION['customer_id']) {
$sql = $db->bindVars($sql, ':customersName', $review_name, 'string');
}
else
{
$sql = $db->bindVars($sql, ':customersName', $customer->fields['customers_firstname'] . ' ' .
$customer->fields['customers_lastname'], 'string');
}

$sql = $db->bindVars($sql, ':rating', $rating, 'string');

$db->Execute($sql);

$insert_id = $db->Insert_ID();

$sql = "INSERT INTO " . TABLE_REVIEWS_DESCRIPTION . " (reviews_id, languages_id, reviews_text)
VALUES (:insertID, :languagesID, :reviewText)";

$sql = $db->bindVars($sql, ':insertID', $insert_id, 'integer');
$sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
$sql = $db->bindVars($sql, ':reviewText', $review_text, 'string');

$db->Execute($sql);
// send review-notification email to admin
if (REVIEWS_APPROVAL == '1' && SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS == '1' and defined('SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO') and SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO !='') {
$email_text  = sprintf(EMAIL_PRODUCT_REVIEW_CONTENT_INTRO, $product_info->fields['products_name']) . "\n\n" ;
$email_text .= sprintf(EMAIL_PRODUCT_REVIEW_CONTENT_DETAILS, $review_text)."\n\n";
$email_subject = sprintf(EMAIL_REVIEW_PENDING_SUBJECT,$product_info->fields['products_name']);
$html_msg['EMAIL_SUBJECT'] = sprintf(EMAIL_REVIEW_PENDING_SUBJECT,$product_info->fields['products_name']);
$html_msg['EMAIL_MESSAGE_HTML'] = str_replace('\n','',sprintf(EMAIL_PRODUCT_REVIEW_CONTENT_INTRO,$product_info->fields['products_name']));
$html_msg['EMAIL_MESSAGE_HTML'] .= '<br />';
$html_msg['EMAIL_MESSAGE_HTML'] .= str_replace('\n','',sprintf(EMAIL_PRODUCT_REVIEW_CONTENT_DETAILS, $review_text));
$extra_info=email_collect_extra_info($name,$email_address, $customer->fields['customers_firstname'] . ' ' . $customer->fields['customers_lastname'] , $customer->fields['customers_email_address'] );
$html_msg['EXTRA_INFO'] = $extra_info['HTML'];
zen_mail('', SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO, $email_subject ,
$email_text . $extra_info['TEXT'], STORE_NAME, EMAIL_FROM, $html_msg, 'reviews_extra');
}
// end send email

zen_redirect(zen_href_link(FILENAME_PRODUCT_REVIEWS, zen_get_all_get_params(array('action'))));
}
}

$products_price = zen_get_products_display_price($product_info->fields['products_id']);

$products_name = $product_info->fields['products_name'];

if ($product_info->fields['products_model'] != '') {
$products_model = '<br /><span>[' . $product_info->fields['products_model'] . ']</span>';
} else {
$products_model = '';
}

// set image
//  $products_image = $product_info->fields['products_image'];
if ($product_info->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == '1') {
$products_image = PRODUCTS_IMAGE_NO_IMAGE;
} else {
$products_image = $product_info->fields['products_image'];
}

$breadcrumb->add(NAVBAR_TITLE);

// This should be last line of the script:
$zco_notifier->notify('NOTIFY_HEADER_END_PRODUCT_REVIEWS_WRITE');
?>

 

三,把以上代码作为:modules/pages/product_reviews_write/jscript_main.php

<?php
//
// +———————————————————————-+
// |zen-cart Open Source E-commerce                                       |
// +———————————————————————-+
// | Copyright (c) 2003 The zen-cart developers                           |
// |                                                                      |
// | http://www.zen-cart.com/index.php                                    |
// |                                                                      |
// | Portions Copyright (c) 2003 osCommerce                               |
// +———————————————————————-+
// | This source file is subject to version 2.0 of the GPL license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available through the world-wide-web at the following url:           |
// | http://www.zen-cart.com/license/2_0.txt.                             |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to       |
// | so we can mail you a copy immediately.          |
// +———————————————————————-+
// $Id: jscript_main.php 1105 2005-04-04 22:05:35Z birdbrain $
//
?>
<script language="javascript" type="text/javascript"><!–
var form = "";
var submitted = false;
var error = false;
var error_message = "";

function check_input(field_name, field_size, message) {
if (form.elements[field_name] && (form.elements[field_name].type != "hidden")) {
var field_value = form.elements[field_name].value;

if (field_value == " || field_value.length < field_size) {
error_message = error_message + "* " + message + "\n";
error = true;
}
}
}

function check_radio(field_name, message) {
var isChecked = false;

if (form.elements[field_name] && (form.elements[field_name].type != "hidden")) {
var radio = form.elements[field_name];

for (var i=0; i<radio.length; i++) {
if (radio[i].checked == true) {
isChecked = true;
break;
}
}

if (isChecked == false) {
error_message = error_message + "* " + message + "\n";
error = true;
}
}
}

function checkForm(form_name) {
if (submitted == true) {
alert("<?php echo JS_ERROR_SUBMITTED; ?>");
return false;
}
form = form_name;
error = false;
error_message = "<?php echo JS_ERROR; ?>";

check_input('review_text',"<?php echo REVIEW_TEXT_MIN_LENGTH; ?>","<?php echo JS_REVIEW_TEXT; ?>");
check_input('review-nume',"<?php echo 3; ?>","<?php echo JS_REVIEW_NAME; ?>");
check_radio("rating","<?php echo JS_REVIEW_RATING; ?>");

if (error == true) {
alert(error_message);
return false;
} else {
submitted = true;
return true;
}
}

function popupWindow(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
//–></script>

 

四,在ncludes/languages/english.php加入以上代码.

define('JS_REVIEW_NAME', '* You have to complete your name.');
define('TEXT_REVIEW_NAME', 'Your Name:');


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值