function loadReviews() { global $toC_Json; $data = osC_Reviews_Admin::getData($_REQUEST['reviews_id']); $data['date_added'] = osC_DateTime::getShort($data['date_added']); $response = array('success' => true, 'data' => $data); echo $toC_Json->encode($response); }
<?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2007 osCommerce This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License v2 (1991) as published by the Free Software Foundation. */ $osC_ObjectInfo = new osC_ObjectInfo(osC_Reviews_Admin::getData($_GET['rID'])); $rating_array = array(); for ($i = 1; $i <= 5; $i++) { $rating_array[] = array('id' => $i, 'text' => ''); } ?> <h1><?php echo osc_link_object(osc_href_link_admin(FILENAME_DEFAULT, $osC_Template->getModule()), $osC_Template->getPageTitle()); ?> </h1> <?php if ($osC_MessageStack->size($osC_Template->getModule()) > 0) { echo $osC_MessageStack->get($osC_Template->getModule()); } ?>