/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/request.php

  • Committer: Suren A. Chilingaryan
  • Date: 2018-04-16 07:55:55 UTC
  • Revision ID: csa@suren.me-20180416075555-3y45n4jni2k1m0t6
Allow time format customization for CSV export

Show diffs side-by-side

added added

removed removed

Lines of Context:
1150
1150
    return new DRAW($this);
1151
1151
 }
1152
1152
 
1153
 
 function GetFormatInfo() {
 
1153
 function GetFormatInfoInternal() {
1154
1154
    global $ADEI_SYSTEM_FORMATS;
1155
1155
    global $EXPORT_FORMATS;
1156
1156
    global $EXPORT_DEFAULT_FORMAT;
1172
1172
        );
1173
1173
 }
1174
1174
 
 
1175
 function GetFormatInfo() {
 
1176
    $format = $this->GetFormatInfoInternal();
 
1177
    if ($format) $format['req'] = $this;
 
1178
    return $format;
 
1179
    
 
1180
 }
 
1181
 
1175
1182
 function CreateExporter(STREAMObjectInterface &$h = NULL, &$format = NULL) {
1176
1183
    global $ADEI;
1177
1184
    $ADEI->RequireClass("export");