You are here

function theme_date_repeat in Date 6

Same name and namespace in other branches
  1. 5.2 date_repeat/date_repeat_form.inc \theme_date_repeat()
  2. 6.2 date_repeat/date_repeat_form.inc \theme_date_repeat()

Themes the date repeat element.

File

date_repeat/date_repeat_form.inc, line 253
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($element) {
  return theme('form_element', $element, '<div class="container-inline">' . drupal_render($element) . '</div>');
}