Rename all models
This commit is contained in:
@@ -16,17 +16,17 @@ class ProjectOverviewController extends BaseController
|
||||
public function show()
|
||||
{
|
||||
$project = $this->getProject();
|
||||
$this->project->getColumnStats($project);
|
||||
$this->projectModel->getColumnStats($project);
|
||||
|
||||
$this->response->html($this->helper->layout->app('project_overview/show', array(
|
||||
'project' => $project,
|
||||
'title' => $project['name'],
|
||||
'description' => $this->helper->projectHeader->getDescription($project),
|
||||
'users' => $this->projectUserRole->getAllUsersGroupedByRole($project['id']),
|
||||
'users' => $this->projectUserRoleModel->getAllUsersGroupedByRole($project['id']),
|
||||
'roles' => $this->role->getProjectRoles(),
|
||||
'events' => $this->helper->projectActivity->getProjectEvents($project['id'], 10),
|
||||
'images' => $this->projectFile->getAllImages($project['id']),
|
||||
'files' => $this->projectFile->getAllDocuments($project['id']),
|
||||
'images' => $this->projectFileModel->getAllImages($project['id']),
|
||||
'files' => $this->projectFileModel->getAllDocuments($project['id']),
|
||||
)));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user