/adei/ui

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/ui
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class LOGGROUP {
 var $gid;

 function __construct(array &$info, READER &$reader = NULL, $flags = 0) {
    if (isset($info["db_group"])) $this->gid = $info["db_group"];
    else $this->gid = false;
 }

 function GetGroupID() {
    return $this->gid;
 }
};


?>