Skip to content

Commit

Permalink
remove obsolete User->display param close #469
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-peugnet committed Nov 1, 2024
1 parent 16548db commit 510c46f
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions app/class/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ class User extends Item
/** @var string[] sessions */
protected array $sessions = [];

/** @var bool[] $display interface display options */
protected array $display = ['bookmark' => false];

public const HOME_COLUMNS = [
'favicon',
'download',
Expand Down Expand Up @@ -148,11 +145,6 @@ public function sessions()
return $this->sessions;
}

public function display()
{
return $this->display;
}


// _______________________ S E T _______________________

Expand Down Expand Up @@ -265,13 +257,6 @@ public function setsessions($sessions)
}
}

public function setdisplay($display)
{
if (is_array($display)) {
$this->display = $display;
}
}




Expand Down

0 comments on commit 510c46f

Please sign in to comment.