core/process/queries/QueryManagerMysqlMonocleAlternate.php 1 location
|
@@ 389-397 (lines=9) @@
|
| 386 |
|
return array(); // Waiting for Monocle to store level |
| 387 |
|
} |
| 388 |
|
|
| 389 |
|
public function getTrainerLevelCount($team_id) { |
| 390 |
|
$levelData = array(); |
| 391 |
|
for ($i = 5; $i <= 40; $i++) { |
| 392 |
|
if (!isset($levelData[$i])) { |
| 393 |
|
$levelData[$i] = 0; |
| 394 |
|
} |
| 395 |
|
} |
| 396 |
|
return $levelData; // Waiting for Monocle to store level |
| 397 |
|
} |
| 398 |
|
|
| 399 |
|
|
| 400 |
|
///////// |
core/process/queries/QueryManagerPostgresqlMonocleAlternate.php 1 location
|
@@ 395-403 (lines=9) @@
|
| 392 |
|
return array(); // Waiting for Monocle to store level |
| 393 |
|
} |
| 394 |
|
|
| 395 |
|
public function getTrainerLevelCount($team_id) { |
| 396 |
|
$levelData = array(); |
| 397 |
|
for ($i = 5; $i <= 40; $i++) { |
| 398 |
|
if (!isset($levelData[$i])) { |
| 399 |
|
$levelData[$i] = 0; |
| 400 |
|
} |
| 401 |
|
} |
| 402 |
|
return $levelData; // Waiting for Monocle to store level |
| 403 |
|
} |
| 404 |
|
|
| 405 |
|
|
| 406 |
|
///////// |