Linux 软件免费装

Event Organiser CSV

开发者 stephenharris
更新时间 2015年5月25日 20:47
捐献地址: 去捐款
PHP版本: 3.5.1 及以上
WordPress版本: 4.2.2
版权: GPLv2 or later
版权网址: 版权信息

标签

import CSV Event

下载

0.1.3 0.2.0 0.3.0 0.1.2 0.3.1 0.3.2

详情介绍:

This plug-in allows to import events from a CSV file into Event Organiser. You can also export events from Event Organiser into a CSV file. Please note that this plug-in still in beta. I welcome feedback, issues and pull-requests. Aim To allow users to export / import events in CSV format between various calendar applications, and to do this flexiably so as to limit the number of requirements on the CSV file before it can be read correctly. To allow users to move events between installations of Event Organiser while preserving data that is not suported by iCal. In the vein of flexibility columns do not have to be in any prescribed order: you tell the plug-in which columns pertain to what (start date, end date etc) after importing the file. How to use this plug-in Once installed, go to Tools > Import Events. Here you can export a CSV file or select a file to import one. To import an file: Importing new venues, categories and tags By default the plug-in will only import venues, categories and tags that already exist. To allow the plug-in to create new venues, categories and tags you can add the following code (to a seperate plug-in or your theme's functions.php). function my_set_import_imports( $args, $file ){ $args['import_new_event-category'] = true; //create category if it doesn't exist $args['import_new_event-venue'] = true; //create venue if it doesn't exist. $args['import_new_event-tag'] = true; //create tag if it doesn't exist. return $args; } add_filter( 'eventorganiser_csv_import_args', 'my_set_import_imports', 10, 2 ); Please note the limitations on importing venues discussed below. Limitations Current limitations apply. See the examples folder for an archetypal CSV file Please note that in theory all dates (other than the start date) can be given in any format, however, to ensure dates are interpreted correctly it is strongly recommended to give dates in Y-m-d (or Y-m-d H:i for non-all day events) format. The start date must be in that format so that the importer can differentriate between all-day and non-all-day events. Future Features

安装:

  1. Upload the entire /event-organiser-csv directory to the /wp-content/plugins/ directory.
  2. Activate Event Organiser CSV through the 'Plugins' menu in WordPress.

屏幕截图:

  • At *Tools > Import Events* select a file to import.
  • Select delimiter, and identify each column.
  • After importing the events you'll be notified if the it was successful.

更新日志:

0.3.2 - 25th May 2015 0.3.1 0.3.0 0.2.0 0.1.3 0.1.2 0.1.1 0.1.0