Rename method names to be more consistent
This commit is contained in:
@@ -188,7 +188,7 @@ class Board extends Base
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$last_seen_project_id = $this->user->getLastSeenProject();
|
||||
$last_seen_project_id = $this->user->getLastSeenProjectId();
|
||||
$favorite_project_id = $this->user->getFavoriteProjectId();
|
||||
$project_id = $last_seen_project_id ?: $favorite_project_id;
|
||||
|
||||
@@ -224,7 +224,7 @@ class Board extends Base
|
||||
$board_selector = $projects;
|
||||
unset($board_selector[$project['id']]);
|
||||
|
||||
$this->user->storeLastSeenProject($project['id']);
|
||||
$this->user->storeLastSeenProjectId($project['id']);
|
||||
|
||||
$this->response->html($this->template->layout('board_index', array(
|
||||
'users' => $this->project->getUsersList($project['id'], true, true),
|
||||
|
||||
@@ -44,7 +44,7 @@ class User extends Base
|
||||
* @access public
|
||||
* @return integer
|
||||
*/
|
||||
public function getLastSeenProject()
|
||||
public function getLastSeenProjectId()
|
||||
{
|
||||
return empty($_SESSION['user']['last_show_project_id']) ? 0 : $_SESSION['user']['last_show_project_id'];
|
||||
}
|
||||
@@ -55,7 +55,7 @@ class User extends Base
|
||||
* @access public
|
||||
* @@param integer $project_id Project id
|
||||
*/
|
||||
public function storeLastSeenProject($project_id)
|
||||
public function storeLastSeenProjectId($project_id)
|
||||
{
|
||||
$_SESSION['user']['last_show_project_id'] = (int) $project_id;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user