如何在Ubercart 3中自定义发票页面

时间:2011-11-22 14:46:50

标签: php drupal drupal-7 ubercart

我需要自定义用户在网址上看到的页面:user /%user / orders /%uc_order

我试图使用hook_uc_order_pane

function mymodule_uc_order_pane() {
  $panes['ship_to_xx'] = array(
  'callback' => 'mymodule_uc_order_pane_ship_to_xx',
  'title' => t('Just a Test'),
  'desc' => t("Description!!"),
  'class' => 'pos-left',
  'weight' => 99,
  'show' => array('view', 'edit', 'invoice', 'customer'),
  );
  return $panes;
}

并清除所有缓存,但这不起作用。它没有显示任何内容。 你有什么建议吗?

1 个答案:

答案 0 :(得分:0)

代码没错。 正确的方法是:

function mymodule_uc_order_pane() {
    $panes['mm_links'] = array(
    'callback' => 'mymodule_uc_order_pane_links',
    'title' => t('Just a Test'),
    'desc' => t("Description!!"),
    'class' => 'pos-left',
    'weight' => 99,
    'show' => array('customer'),
    );
    return $panes;
}

function mymodule_uc_order_pane_links($op,$order){
    $html='';
    foreach($order->products as $product){
        $node = node_load($product->nid);
        $html.='Date: '.$product->data['attributes']['Tour Date'][0].'<br/>';
        $html.='Parent ID: '.$node->field_tour['und'][0]['nid'].'<br/>';
    }   
    return ($html);
}