You are here

function theme_date_repeat_current_exceptions in Date 5.2

Same name and namespace in other branches
  1. 8 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()
  2. 6.2 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()
  3. 6 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()
  4. 7.3 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()
  5. 7 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()
  6. 7.2 date_repeat/date_repeat_form.inc \theme_date_repeat_current_exceptions()

Theme the exception list as a table so the buttons line up

File

date_repeat/date_repeat_form.inc, line 260
Code to add a date repeat selection form to a date field and create an iCal RRULE from the chosen selections.

Code

function theme_date_repeat_current_exceptions($rows = array()) {
  $rows_info = array();
  foreach ($rows as $key => $value) {
    if (substr($key, 0, 1) != '#') {
      $rows_info[] = array(
        drupal_render($value['action']),
        drupal_render($value['display']),
      );
    }
  }
  return theme('table', array(
    t('Delete'),
    t('Current Exceptions'),
  ), $rows_info);
}