mod/gc_onboard_collab/views/default/profileStrength/infoCard.php 1 location
|
@@ 18-21 (lines=4) @@
|
| 15 |
|
$department = $user->federal; |
| 16 |
|
break; |
| 17 |
|
case "student": |
| 18 |
|
case "academic": |
| 19 |
|
$institution = $user->institution; |
| 20 |
|
$department = ($institution == 'university') ? $user->university : ($institution == 'college' ? $user->college : $user->highschool); |
| 21 |
|
break; |
| 22 |
|
case "provincial": |
| 23 |
|
$department = $user->provincial . ' / ' . $user->ministry; |
| 24 |
|
break; |
mod/gc_mobile_api/models/user.php 1 location
|
@@ 198-201 (lines=4) @@
|
| 195 |
|
$user['department'] = $user_entity->federal; |
| 196 |
|
break; |
| 197 |
|
case "student": |
| 198 |
|
case "academic": |
| 199 |
|
$institution = $user_entity->institution; |
| 200 |
|
$user['department'] = ($institution == 'university') ? $user_entity->university : ($institution == 'college' ? $user_entity->college : $user_entity->highschool); |
| 201 |
|
break; |
| 202 |
|
case "provincial": |
| 203 |
|
$user['department'] = $user_entity->provincial . ' / ' . $user_entity->ministry; |
| 204 |
|
break; |