added nicer overview and delete function

This commit is contained in:
2023-10-26 17:50:54 +02:00
parent 0f13bdea27
commit ddf13b2413
8 changed files with 81 additions and 23 deletions

View File

@ -33,6 +33,16 @@ class User extends Model {
unset($_SESSION['user']);
}
function removeDog($dogid)
{
if(!$this->id) return false;
if (in_array($dogid, $this->data['dogs']))
{
$this->data['dogs'] = array_diff($this->data['dogs'],[$dogid]);
$this->save();
}
}
function getAll($filtered = true)
{
$keys = $this->redis->keys($this->dbTable.':*');