übercart kosár oldalon termék sku kijelzése 6x alatt

uniquevisitor képe

Sziasztok!

Übercart kosár oldalon a termékek sku kijelzését szeretném megoldani drupal 6x alatt. Ezt találtam, de ez sajnos nem megy. Mit kellene javítani benne, hogy 6x kompatibilis legyen? http://www.ubercart.org/forum/support/2458/add_sku_cart

uc_showsku.info

; $Id$
name = Show SKU
description = Add SKU column to Product and Cart tables
dependencies = uc_cart
package = "Ubercart - core (optional)"

uc_showsku.module

<?php
/**
* Implementation of TAPIr's hook_table_alter().
*/
 
function uc_showsku_table_alter($table_id, $op, $args = null) {
  if($table_id == 'uc_cart_view_table') {
    switch ($op){
     case 'fields':
       $fields[] = array('name' => 'model',
         'title' => t('SKU'),
         'weight' => 1,
         'enabled' => true,
       );
     return $fields;
      case 'data':
      foreach ($args['#parameters'][1] as $item) {
        $data['model'][] = $item->model;
      }
      return $data;
 
}
  }
}

Köszönöm szépen. Esetleg hol találok leírást, hogy mit mire kell változtatni az 5x-hez képest? köszi

Melyik modulhoz, modulokhoz kapcsolódik a téma?: 
Drupal verzió: