You are here

function commerce_views_display_plugin_style_add_to_cart_form::init in Commerce Views Display 7

Initialize a style plugin.

Parameters

$view:

$display:

$options: The style options might come externally as the style can be sourced from at least two locations. If it's not included, look on the display.

Overrides views_plugin_style::init

File

includes/views/plugins/commerce_views_display_plugin_style_add_to_cart_form.inc, line 26
Contains the views ui tabs style plugin.

Class

commerce_views_display_plugin_style_add_to_cart_form
Style plugin to render each item in an add to cart form

Code

function init(&$view, &$display, $options = NULL) {
  parent::init($view, $display, $options);

  // process inputs from query params
  $this
    ->_process_query_params();
}