Пример #1
0
 function processSummary()
 {
     $a = array();
     foreach (self::$processSummaryFields as $field) {
         $a[$field] = $this->{$field};
     }
     if ($this->processTime) {
         $a['processTime'] = libTime::stamp($this->processTime);
     } else {
         $a['processTime'] = 'NULL';
     }
     $a['turn'] = $this->datetxt();
     $a['members'] = $this->Members->processSummary();
     return $a;
 }