You are here

commerce_product_handler_field_product.inc in Commerce Core 7

Contains the basic product field handler.

File

modules/product/includes/views/handlers/commerce_product_handler_field_product.inc
View source
<?php

/**
 * @file
 * Contains the basic product field handler.
 */

/**
 * Field handler to provide simple renderer that allows linking to a product.
 */
class commerce_product_handler_field_product extends views_handler_field {
  function init(&$view, &$options) {
    parent::init($view, $options);
    if (!empty($this->options['link_to_product'])) {
      $this->additional_fields['product_id'] = 'product_id';
    }
  }
  function option_definition() {
    $options = parent::option_definition();
    $options['link_to_product'] = array(
      'default' => FALSE,
    );
    return $options;
  }

  /**
   * Provide the link to product option.
   */
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['link_to_product'] = array(
      '#title' => t("Link this field to the product's administrative view page"),
      '#description' => t('This will override any other link you have set.'),
      '#type' => 'checkbox',
      '#default_value' => !empty($this->options['link_to_product']),
    );
  }

  /**
   * Render whatever the data is as a link to the product.
   *
   * Data should be made XSS safe prior to calling this function.
   */
  function render_link($data, $values) {
    if (!empty($this->options['link_to_product']) && $data !== NULL && $data !== '') {
      $product_id = $this
        ->get_value($values, 'product_id');
      $this->options['alter']['make_link'] = TRUE;
      $this->options['alter']['path'] = 'admin/commerce/products/' . $product_id;
    }
    return $data;
  }
  function render($values) {
    $value = $this
      ->get_value($values);
    return $this
      ->render_link($this
      ->sanitize_value($value), $values);
  }

}

Classes

Namesort descending Description
commerce_product_handler_field_product Field handler to provide simple renderer that allows linking to a product.