";
$full_title = $before_title . $title . $after_title;
echo $full_title."
";
nzshpcrt_latest_product();
echo $after_widget;
}
function nzshpcrt_latest_product($input = null) {
global $wpdb;
$image_width = get_option('product_image_width');
$image_height = get_option('product_image_height');
$siteurl = get_option('siteurl');
$options = get_option("wpsc-widget_latest_products");
$number = ($options["number"]==0)?5:$options["number"];
$latest_product = $wpdb->get_results("SELECT * FROM `".WPSC_TABLE_PRODUCT_LIST."` WHERE `active` IN ('1') AND `publish` IN ('1') ORDER BY `id` DESC LIMIT ".$number, ARRAY_A);
if($latest_product != null) {
$output = "
\n\r"; echo " \n\r"; echo " \n\r"; echo "
\n\r"; } function widget_latest_products_init() { if(function_exists('register_sidebar_widget')) { register_sidebar_widget(__('Latest Products', 'wpsc'), 'widget_latest_products'); register_widget_control(__('Latest Products', 'wpsc'), 'widget_latest_products_control'); } return; } add_action('plugins_loaded', 'widget_latest_products_init'); ?>