You are here

function date_copy_help in Date 5

Same name and namespace in other branches
  1. 5.2 date_copy/date_copy.module \date_copy_help()

Date Copy

A module to import and export date data in various ways. Currently only imports date data from events and ical.

Importing data from csv files can currently be done using the Node Import module, no need to add that here.

@todo Add export capabilities, possibly add support for csv import.

File

./date_copy.module, line 13

Code

function date_copy_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Copy data in and out of Date module.');
      break;
  }
}