Rename method names to be more consistent

This commit is contained in:
Frédéric Guillot 2014-09-16 13:38:32 +02:00
parent b1ffbbd501
commit 6afae5ba7b
2 changed files with 4 additions and 4 deletions

View File

@ -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),

View File

@ -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;
}