1.19.2.3.2.1.2.13.2.61 (checked in on 2008/06/11 at 19:32:32 by brmassa)
@author e-Commerce Dev Team auction.module Auction products for e-Commerce.
Users can see their bidding history, site admins can forbid users to change the default expiration date, and some other fetures.
| Name | Description |
|---|---|
| auction_access | Implementation of hook_access(). |
| auction_bid_current | When passed a node id, returns the current bid, bidder, date and number of bids. |
| auction_bid_form | Generates the HTML elements required for an auction bidding form. You can retheme this form by overriding theme_auction_bid_form(). |
| auction_bid_form_submit | Submit form, which passed validation, save bid to database |
| auction_bid_form_validate | Checks that a new bid is valid. Currently, it simply checks that the bid is a number and is higher than the previous bid. |
| auction_bid_history | Displays a bidding history for the passed node id. Currently displays that data in a table with no option to retheme in anything but a table. |
| auction_bid_save | Save the bid |
| auction_checkout_page | Add all auction products that the user won to cart |
| auction_ec_settings | Implementation of e-Commerce hook_ec_settings(). |
| auction_item_paid_for | Supposed to return true if the auction item has already been paid for. But between you and me, I am suspicious of the logic. |
| auction_link | Implementation of hook_link(). |
| auction_link_alter | Implemetation of hook_links_alter() |
| auction_menu | Implementation of hook_menu(). |
| auction_nodeapi | Implemetation of hook_nodeapi() |
| auction_page | Auction page |
| auction_perm | Implementation of hook_perm(). |
| auction_product_delete | Implementation of hook_product_delete() |
| auction_product_ec_checkout_validate_item | Implementation of hook_product_cart_add_item() |
| auction_product_form_alter | Implementation of hook_product_form_alter(). TODO: this was already broken so needs fixing. |
| auction_product_info | Implementation of hook_product_info() |
| auction_product_insert | Implementation of hook_product_insert() |
| auction_product_load | Implementation of hook_product_load() |
| auction_product_price_adjust | Implementation of hook_product_price_adjust() |
| auction_product_update | Implementation of hook_product_update() |
| auction_product_validate | Implementation of hook_product_validate() |
| auction_user | Implementation of hook_user(). |
| auction_views_filter_bid | Filter the Views to only show the last bid |
| auction_views_tables | Implementation of hook_views_tables() |
| product_auction_view_form | Create form array and load some useful information for later theming |
| theme_auction_bid_form | Formats the HTML elements that you see when you _Bid_ on an auction. You can override this function. Refer to Theming at http://drupal.org/node/55126. Called indirectly by theme_product_auction_view() |
| theme_auction_bid_history | Formats the Bidders' list |
| theme_product_auction_view_form | Formats the HTML elements that you see when you _View_ an auction. |