You are here

function theme_uc_role_user_expiration in Ubercart 8.4

Themes the role expiration table on the account edit page.

Parameters

array $variables: An associative array containing:

  • form: A render element representing the form.

Return value

string Formatted HTML.

1 string reference to 'theme_uc_role_user_expiration'
uc_role_theme in uc_role/uc_role.module
Implements hook_theme().
1 theme call to theme_uc_role_user_expiration()
uc_role_form_user_profile_form_alter in uc_role/uc_role.module
Implements hook_form_user_profile_form_alter().

File

uc_role/uc_role.theme.inc, line 49
Theme functions for the uc_role module.

Code

function theme_uc_role_user_expiration(array $variables) {
  $form = $variables['form'];
  $header = [
    [
      'data' => t('Make permanent'),
    ],
    [
      'data' => t('Role'),
    ],
    [
      'data' => t('Expiration'),
    ],
    [
      'data' => t('Add/remove time'),
    ],
  ];
  $rows = [];

  // The expiration table.
  foreach ((array) $form['table'] as $rid => $expiration) {

    // We only want numeric rids.
    if (!is_numeric($rid)) {
      continue;
    }

    // Make sure the renders actually touch the elements.
    $data =& $form['table'][$rid];
    $rows[] = [
      [
        'data' => drupal_render($data['remove']),
      ],
      [
        'data' => $data['name']['#value'],
      ],
      [
        'data' => \Drupal::service('date.formatter')
          ->format($data['expiration']['#value'], 'short'),
      ],
      // Options to adjust the expiration.
      [
        'data' => '<a name="role-expiration-' . $rid . '">' . '<div class="expiration">' . drupal_render($data['polarity']) . drupal_render($data['qty']) . drupal_render($data['granularity']) . '</div></a>',
      ],
    ];
  }
  $table = [
    '#theme' => 'table',
    '#header' => $header,
    '#rows' => $rows,
    '#caption' => t('Below you can add or remove time to the expiration dates of the following roles.'),
    '#empty' => t('There are no pending expirations for roles this user.'),
  ];
  $output = drupal_render($table);
  $output .= drupal_render_children($form);
  return $output;
}