Changeset 13071

Show
Ignore:
Timestamp:
10/24/07 19:07:55 (1 year ago)
Author:
bergie
Message:

Forward-porting type-filtered exporter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.helper.replicator/config/schemadb_default.inc

    r4995 r13071  
    107107), 
    108108 
     109'staging2live_typefilter' => array 
     110( 
     111    'description' => 'staging2live subscription with type filter', 
     112    'l10n_db'     => 'midcom.helper.replicator', 
     113    'fields'      => array 
     114    ( 
     115        'title' => Array 
     116        ( 
     117            // COMPONENT-REQUIRED 
     118            'title' => 'title', 
     119            'storage' => 'title', 
     120            'required' => true, 
     121            'type' => 'text', 
     122            'widget' => 'text', 
     123        ), 
     124        'description' => Array 
     125        ( 
     126            'title' => 'description', 
     127            'storage' => 'description', 
     128            'type' => 'text', 
     129            'widget' => 'textarea', 
     130        ), 
     131        'status' => Array 
     132        ( 
     133            // COMPONENT-REQUIRED 
     134            'title' => 'status', 
     135            'storage' => 'status', 
     136            'type' => 'select', 
     137            'type_config' => array 
     138            ( 
     139                'options' => array 
     140                ( 
     141                    MIDCOM_REPLICATOR_AUTOMATIC => 'automatic', 
     142                    MIDCOM_REPLICATOR_MANUAL    => 'manual', 
     143                    MIDCOM_REPLICATOR_DISABLED  => 'disabled', 
     144                ), 
     145            ), 
     146            'widget' => 'select', 
     147        ), 
     148        'transporter' => Array 
     149        ( 
     150            // COMPONENT-REQUIRED 
     151            'title' => 'transporter', 
     152            'storage' => 'transporter', 
     153            'type' => 'select', 
     154            'type_config' => array 
     155            ( 
     156                'options' => midcom_helper_replicator_transporter::list_transports(), 
     157            ), 
     158            'widget' => 'select', 
     159        ),  
     160    ) 
     161), 
     162 
     163