项目作者: sirdiego

项目描述 :
TYPO3 CMS Extension - importr
高级语言: PHP
项目地址: git://github.com/sirdiego/importr.git
创建时间: 2016-06-06T10:02:01Z
项目社区:https://github.com/sirdiego/importr

开源协议:

下载


importr

Build Status Scrutinizer Code Quality Code Coverage

The importr can be used to create a bridge between TYPO3 entities and Excel, CSV or other text files.

Installation

After installing the extension via one of the possible methods you need to add the Scheduler Task to your tasks.

  • Extbase CommandController Task (extbase) - importr:import:initializeservicemanager

The frequency should be as often as possible (e.g. * * * * *), this way the Importr can be as precise as possible with the import timings.

TODO: Screenshot

TYPO3 Composer Mode

composer require diego/importr

Via Extension Manager

TODO: Screenshot

Usage

After installing the extension and adding the Scheduler Task you can start configuring your possible imports. These are called Strategies and should be placed on the root of your TYPO3 installation.

A Strategy consists of three main parts. The general configuration, the resource configuration and the target configuration. Every import needs to know from what resource it gets its data (resource) and where to put it (target).

By default the extension ships with an Excel (HDNET\Importr\Service\Resources\Excel), CSV (HDNET\Importr\Service\Resources\Csv) resources and Extbase model (HDNET\Importr\Service\Targets\ExtbaseModel) and database record (HDNET\Importr\Service\Targets\DbRecord) targets.

A simple Strategy can look like this:

Configuration

  1. before:
  2. updateInterval: 100 # Sets th
  3. after:
  4. createImport:
  5. 1:
  6. importId: 1
  7. start: tomorrow 0400
  8. filepath: uploads/my_import.csv

Resources

  1. HDNET\Importr\Service\Resources\Csv:
  2. skipRows: 1
  3. delimiter: ,

Targets

  1. HDNET\Importr\Service\Targets\ExtbaseModel:
  2. model: VENDOR\MyExt\Domain\Model\MyModel
  3. repository: VENDOR\MyExt\Domain\Repository\MyRepository
  4. pid: 123
  5. mapping:
  6. 0: myPropertyA
  7. 1: myPropertyB
  8. 8: myPropertyD