You are here

uc_roles.tokens.inc in Ubercart 7.3

Token hooks for the uc_roles module.

File

uc_roles/uc_roles.tokens.inc
View source
<?php

/**
 * @file
 * Token hooks for the uc_roles module.
 */

/**
 * Implements hook_token_info().
 */
function uc_roles_token_info() {
  $type = array(
    'name' => t('Role promotions'),
    'description' => t('Tokens related to purchased, temporary roles.'),
    'needs-data' => 'uc_role',
  );
  $tokens['expiration'] = array(
    'name' => t('Expiration'),
    'description' => t('The date the role will expire.'),
    'type' => 'date',
  );
  $tokens['name'] = array(
    'name' => t('Role'),
    'description' => t('The associated role name'),
  );
  return array(
    'types' => array(
      'uc_role' => $type,
    ),
    'tokens' => array(
      'uc_role' => $tokens,
    ),
  );
}

/**
 * Implements hook_tokens().
 */
function uc_roles_tokens($type, $tokens, $data = array(), $options = array()) {
  $language_code = NULL;
  if (isset($options['language'])) {
    $language_code = $options['language']->language;
  }
  $sanitize = !empty($options['sanitize']);
  $replacements = array();
  if ($type == 'uc_role' && !empty($data['uc_role'])) {
    $object = $data['uc_role'];
    foreach ($tokens as $name => $original) {
      switch ($name) {
        case 'expiration':
          $replacements[$original] = format_date($object->expiration, 'medium');
          break;
        case 'name':
          $replacements[$original] = $sanitize ? check_plain(_uc_roles_get_name($object->rid)) : _uc_roles_get_name($object->rid);
          break;
      }
    }
    if ($expiration_tokens = token_find_with_prefix($tokens, 'expiration')) {
      $replacements += token_generate('date', $expiration_tokens, array(
        'date' => $object->expiration,
      ), $options);
    }
  }
  return $replacements;
}

Functions

Namesort descending Description
uc_roles_tokens Implements hook_tokens().
uc_roles_token_info Implements hook_token_info().