Drupal Ubercart API 简介
星期五, 12/31/2010 - 09:17 — admin
Drupal ubercart 是一套drupal购物车系统。结合drupal可以开发一套很不错的网上商店系统。功能强大,扩扩展性强。在开发的过程中如果想扩展ubercart的 功能,开发者经常要使用到ubercart api 来进行扩展,很方便快捷。 以下顺便记录一下常用的api,便于总结。 当然你也可以直接访问
api.ubercart.org.
hook_download_authorize
hook_file_action
hook_file_transfer_alter
hook_order_state
hook_product_class
hook_product_feature
hook_product_info
hook_xml_exporter
hook_xml_importer
hook_order_state - uc_order.module
hook_product_class - uc_product.module
hook_product_feature - uc_product.module
hook_product_info - uc_product.module
hook_store_status - uc_store.module
hook_xml_exporter - uc_importer.module
hook_xml_importer - uc_importer.module
hook_add_to_cart uc_cart.module hook
hook_calculate_tax uc_taxes.module hook
hook_cart_display uc_cart.module hook
hook_cart_item uc_cart.module hook
hook_cart_pane uc_cart.module hook
hook_ca_action ca.module hook
hook_ca_condition ca.module hook
hook_ca_predicate ca.module hook
hook_ca_trigger ca.module hook
hook_checkout_pane uc_cart.module hook
hook_download_authorize uc_file.module hook
hook_file_action uc_file.module hook
hook_file_transfer_alter uc_file.module hook
hook_line_item uc_order.module hook
hook_order uc_order.module hook
hook_order_pane uc_order.module hook
hook_order_state uc_cart.module hook
hook_payment_gateway uc_payment.module hook
hook_payment_method uc_payment.module hook
hook_shipping_method uc_quote.module hook
hook_shipping_type uc_quote.module hook
hook_store_status uc_store.module hook
hook_uc_cart_alter uc_cart.module hook
hook_uc_message uc_store.module hook
theme_uc_cart_block_content uc_cart.module theme
theme_uc_cart_block_title uc_cart.module theme
theme_uc_cart_checkout_review uc_cart.module theme
theme_uc_catalog_browse uc_catalog.module theme
theme_uc_empty_cart uc_cart.module theme
theme_uc_file_downloads_token uc_file.module theme
theme_uc_product_add_to_cart uc_product.module theme
theme_uc_product_display_price uc_product.module theme
theme_uc_product_image uc_product.module theme
theme_uc_product_price uc_product.module theme
theme_uc_product_sell_price uc_product.module theme
theme_uc_product_weight uc_product.module theme
uc_cart_complete_sale uc_cart.module
uc_cart_get_contents uc_cart.module
uc_catalog_image_load uc_catalog.module
uc_catalog_set_breadcrumb uc_catalog.module
uc_currency_format uc_store.module format
uc_get_field_name uc_store.module
uc_get_order_status_id uc_order.module
uc_order_comment_save uc_order.module
uc_order_load uc_order.module
uc_order_new uc_order.module
uc_order_state_data uc_order.module
uc_order_state_default uc_order.module
uc_order_state_list uc_order.module
uc_order_status_data uc_order.module
uc_order_status_list uc_order.module
uc_payment_balance uc_payment.module
uc_payment_enter uc_payment.module
uc_product_node_info uc_product.module
uc_product_node_info uc_product.module
uc_range uc_store.module
uc_reports_store_csv uc_roles.module
uc_stock_adjust uc_stock.module
uc_stock_level uc_stock.module
uc_stock_skus uc_stock.module
uc_stock_sku_fields uc_stock.module
uc_store_email_from uc_store.module
uc_store_get_icon uc_store.module
uc_weight_format uc_store.module format
uc_weight_sort uc_store.module
来自
http://hellodrupal.info/node/555