mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
0a91bc5aa9
Filterable fields are attempted to be autodetected by using the exportable fields. Records can be filtered by fields with type select,select-cat,select-account,date,date-time (according to egw_record class) only at this time. Filters are saved in the definition and used with scheduled exports. They are also available to the user for modification in the export dialog.
37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - Setup *
|
|
* http://www.eGroupWare.org *
|
|
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
$phpgw_baseline = array(
|
|
'egw_importexport_definitions' => array(
|
|
'fd' => array(
|
|
'definition_id' => array('type' => 'auto','nullable' => False),
|
|
'name' => array('type' => 'varchar','precision' => '255'),
|
|
'application' => array('type' => 'varchar','precision' => '50'),
|
|
'plugin' => array('type' => 'varchar','precision' => '100'),
|
|
'type' => array('type' => 'varchar','precision' => '20'),
|
|
'allowed_users' => array('type' => 'varchar','precision' => '255'),
|
|
'plugin_options' => array('type' => 'longtext'),
|
|
'owner' => array('type' => 'int','precision' => '20'),
|
|
'description' => array('type' => 'varchar','precision' => '255'),
|
|
'modified' => array('type' => 'timestamp'),
|
|
'filter' => array('type' => 'longtext')
|
|
),
|
|
'pk' => array('definition_id'),
|
|
'fk' => array(),
|
|
'ix' => array('name'),
|
|
'uc' => array('name')
|
|
)
|
|
);
|