/dev/adei/adei-blob

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

« back to all changes in this revision

Viewing changes to classes/loggroup.php

  • Committer: Nicholas Tan Jerome
  • Date: 2015-01-30 10:47:32 UTC
  • Revision ID: nicholas.jerome@kit.edu-20150130104732-e37pofkoamnvqkf6
added identifier and logic to handle blob array data.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
 
3
3
class LOGGROUP {
4
 
 var $gid;      // Group identificator
5
 
 var $complex;  // Flag indicating if group is complex, set by reader
 
4
 var $gid;              // Group identificator
 
5
 var $complex;          // Flag indicating if group is complex, set by reader
 
6
 var $options;          // Overiddes options from configuration
6
7
 
7
8
 function __construct(array &$info, READER $reader = NULL, $flags = 0) {
8
9
    if ($flags&REQUEST::CONTROL) {
13
14
        else $this->gid = false;
14
15
    }
15
16
    $this->complex = false;
 
17
    $this->options = array();
16
18
 }
17
19
 
18
20
 function MarkComplex() {