<?PHP
class GroupDirParamAttr
{
var $id;
var $dirdb_id;
var $group_id;
var $owner;
var $createdir;
var $updatedir;
var $deldir;
var $createfile;
var $updatefile;
var $delfile;
var $allowread;
function GroupDirParamAttr($id, $dirdb_id,
$group_id, $owner, $createdir,
$updatedir, $deldir, $createfile, $updatefile, $delfile,
$allowread)
{
$this->id = $id;
$this->dirdb_id = $dirdb_id;
$this->group_id = $group_id;
$this->owner = $owner;
$this->createdir = $createdir;
$this->updatedir = $updatedir;
$this->deldir = $deldir;
$this->createfile = $createfile;
$this->updatefile = $updatefile;
$this->delfile = $delfile;
$this->allowread = $allowread;
}
function setid($_id) { $this->id = $_id; }
function getid() { return $this->id; }
function setdirdb_id($_filedirdb_id) { $this->dirdb_id = $_dirdb_id; }
function getdirdb_id() { return $this->dirdb_id; }
function setgroup_id($_group_id) { $this->group_id = $_group_id; }
function getgroup_id() { return $this->group_id; }
function setowner($_owner) { $this->owner = $_owner; }
function getowner() { return $this->owner; }
function setcreatedir($_createdir) { $this->createdir = $_createdir; }
function getcreatedir() { return $this->createdir; }
function setupdatedir($_updatedir) { $this->updatedir = $_updatedir; }
function getupdatedir() { return $this->updatedir; }
function setdeldir($_deldir) { $this->deldir = $_deldir; }
function getdeldir() { return $this->deldir; }
function setcreatefile($_createfile) { $this->createfile = $_createfile; }
function getcreatefile() { return $this->createfile; }
function setupdatefile($_updatefile) { $this->updatefile = $_updatefile; }
function getupdatefile() { return $this->updatefile; }
function setdelfile($_delfile) { $this->delfile = $_delfile; }
function getdelfile() { return $this->delfile; }
function setread($_allowread) { $this->allowread = $_allowread; }
function getread() { return $this->allowread; }
}
?>