You are here

stripe_customer_viewshandler.inc in Stripe 7

Contains stripe_customer_viewshandler.

File

stripe_customer/views/handlers/stripe_customer_viewshandler.inc
View source
<?php

/**
 * @file
 * Contains stripe_customer_viewshandler.
 */

/**
 * Provides a Views handler to link a Stripe Customer ID.
 *
 * Link follow to a Stripe Dashboard link to view that customer.
 */
class stripe_customer_viewshandler extends views_handler_field_url {
  function option_definition() {
    $options = parent::option_definition();
    $options['display_as_link'] = array(
      'default' => TRUE,
      'bool' => TRUE,
    );
    return $options;
  }

  /**
   * Provide link to the Customer Admin page by default.
   */
  function options_form(&$form, &$form_state) {
    $form['display_as_link'] = array(
      '#title' => t('Display as admin link'),
      '#type' => 'checkbox',
      '#default_value' => !empty($this->options['display_as_link']),
    );
    parent::options_form($form, $form_state);
  }
  function render($values) {
    $value = $this
      ->get_value($values);
    if (!empty($this->options['display_as_link'])) {
      $this->options['alter']['make_link'] = TRUE;
      $this->options['alter']['path'] = 'admin/stripe/customer/' . $value;
      $text = !empty($this->options['text']) ? $this
        ->sanitize_value($this->options['text']) : $this
        ->sanitize_value($value, 'url');
      return $text;
    }
    else {
      return $this
        ->sanitize_value($value, 'text');
    }
  }

}

Classes

Namesort descending Description
stripe_customer_viewshandler Provides a Views handler to link a Stripe Customer ID.