sql delete replaced by delete flag
log list (simple), log categories
minor bug fixes in css
This commit is contained in:
Ricsi
2016-12-30 18:00:05 +01:00
parent 664097a976
commit 5a78b09a38
39 changed files with 557 additions and 92 deletions

View File

@@ -33,6 +33,7 @@ class user_kid extends user_parent {
private $user_region;
private $user_contact;
private $user_other;
private $user_deleted;
public function set_uk_id($_uid) {
$this->user_id = $_uid;
@@ -88,6 +89,9 @@ class user_kid extends user_parent {
public function set_uk_other($_uk_other) {
$this->user_other = $_uk_other;
}
public function set_uk_deleted($_uk_deleted) {
$this->user_deleted = $_uk_deleted;
}
public function get_uk_id() {
return $this->user_id;
@@ -164,6 +168,9 @@ class user_kid extends user_parent {
public function get_uk_other() {
return $this->user_other;
}
public function get_uk_deleted() {
return $this->user_deleted;
}
public function get_uk_presence($_training_id) {