|
|
Drupal example source code file (uc_product_handler_field_buyitnow.inc)
The uc_product_handler_field_buyitnow.inc Drupal example source code<?php // $Id: uc_product_handler_field_buyitnow.inc,v 1.1.2.3 2009/05/07 20:52:29 islandusurper Exp $ /** * @file * Views handler: Simpler "Add to cart" form as a field. */ /** * Display the simpler Add to cart form like the catalog. */ class uc_product_handler_field_buyitnow extends views_handler_field { function query() { $this->ensure_my_table(); $this->add_additional_fields(); } function element_type() { if (isset($this->definition['element type'])) { return $this->definition['element type']; } return 'div'; } function render($values) { $product = node_load($values->{$this->aliases['nid']}); if (uc_product_is_product($product)) { return drupal_get_form('uc_catalog_buy_it_now_form_'. $values->{$this->aliases['nid']}, $product); } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal uc_product_handler_field_buyitnow.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.