Skip to content
Snippets Groups Projects
Commit 3a3c3355 authored by xamgore's avatar xamgore
Browse files

Removed Model_Grades::getDegreeTitle() method

Use RusLang::tr() function instead.
parent 24a8fc23
No related merge requests found
...@@ -15,9 +15,5 @@ class Controller_Environment_Student extends Controller_Environment_User ...@@ -15,9 +15,5 @@ class Controller_Environment_Student extends Controller_Environment_User
parent::before(); parent::before();
$this->user->checkAccess(User::RIGHTS_STUDENT); $this->user->checkAccess(User::RIGHTS_STUDENT);
// todo: remove it, english only
$uniDegree = $this->user->Degree;
$this->user->Degree = Model_Grades::getDegreeTitle($uniDegree);
} }
} }
\ No newline at end of file
...@@ -22,10 +22,6 @@ class Model_Grades extends Model ...@@ -22,10 +22,6 @@ class Model_Grades extends Model
return $list; return $list;
} }
public static function getDegreeTitle($degree) {
return RusLang::tr($degree);
}
public static function getDegreeType($degree) { public static function getDegreeType($degree) {
switch ($degree) { switch ($degree) {
case 'Бакалавр': case 'Бакалавр':
...@@ -52,7 +48,7 @@ class Model_Grades extends Model ...@@ -52,7 +48,7 @@ class Model_Grades extends Model
$i++; $i++;
} }
$list[$i]['Title'] = self::getDegreeTitle($row['Degree']); $list[$i]['Title'] = RusLang::tr($row['Degree']);
$list[$i]['Grades'][] = $row; $list[$i]['Grades'][] = $row;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment