You are here

function calendar_ical_views_tabs in Calendar 5

Implementation of hook_views_tabs().

File

./calendar_ical.module, line 42
Adds ical functionality to Calendar.

Code

function calendar_ical_views_tabs($op) {
  switch ($op) {
    case 'names':
      return array(
        'ical',
      );
  }
}