/dev/adei-asec

To get this branch, use:
bzr branch http://darksoft.org/webbzr/dev/adei-asec

« back to all changes in this revision

Viewing changes to classes/readers/cachereader.php

  • Committer: Suren A. Chilingaryan
  • Date: 2011-03-15 02:47:05 UTC
  • mfrom: (210.1.3 adei)
  • Revision ID: csa@dside.dyndns.org-20110315024705-qljn30gwin8yrkne
Integration of work of students with fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    return $points->valid();
126
126
 }
127
127
 
128
 
 function Export(DATAHandler $h = NULL, LOGGROUP $grp = NULL, MASK $mask = NULL, INTERVAL $ivl = NULL, $resample = 0, $opts = 0) {
 
128
 function Export(DATAHandler $h = NULL, LOGGROUP $grp = NULL, MASK $mask = NULL, INTERVAL $ivl = NULL, $resample = 0, $opts = 0, $dmcb = NULL) {
129
129
    $grp = $this->CheckGroup($grp);
130
130
    if (!$mask) $mask = $this->CreateMask($grp, $minfo = array());
131
131
 
140
140
    }
141
141
    if (!$names) $names = $this->GetItemList($grp, $mask);
142
142
    
143
 
    return $this->ExportData($h, $grp, $mask, $ivl, $resample, $names, $opts);
 
143
    return $this->ExportData($h, $grp, $mask, $ivl, $resample, $names, $opts, $dmcb = NULL);
144
144
 }
145
145
 
146
146