Add project admin interface

This commit is contained in:
2017-10-28 16:44:56 +02:00
parent 751967c5fa
commit 7e3d256f93
6 changed files with 287 additions and 0 deletions

View File

@@ -32,4 +32,8 @@ class Project{
public function getOwnerUName(){
return $this->owneruname;
}
public function getActive(){
return $this->active;
}
}

View File

@@ -43,6 +43,7 @@ class ProjectManager{
$dbProj['name'],
$dbProj['description'],
$dbProj['owner'],
$dbProj['owneruname'],
$dbProj['active']
);