1.19.2.3 (checked in on 2006/10/02 at 00:33:19 by gordon)
| 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_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 | |
| auction_bid_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_ec_settings | Implementation of ecommerce' hook_ec_settings(). |
| auction_help | Implementation of hook_help(). |
| 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_menu | Implementation of hook_menu(). |
| auction_page | |
| auction_perm | Implementation of hook_perm(). |
| auction_productapi | |
| auction_user | Implementation of hook_user(). |
| 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_product_auction_form | Formats the HTML elements that you see when you _View_ an auction. You can override this function. Refer to Theming at http://drupal.org/node/55126. Called indirectly by theme_product_auction_view() |
| theme_product_auction_view | Called via product_view() which is an implementation of hook_view(). Generates the HTML elements required to view an auction. Contrary to its name, do not retheme this function. Please theme theme_product_auction_form() instead. |