-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-139 Create helper function to get fleet slots count
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
modules/flightControl/utils/helpers/getUserFleetSlotsCount.helper.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace UniEngine\Engine\Modules\FlightControl\Utils\Helpers; | ||
|
||
use UniEngine\Engine\Includes\Helpers\Users; | ||
|
||
/** | ||
* @param array $props | ||
* @param ref $props['user'] | ||
* @param number $props['timestamp'] | ||
*/ | ||
function getUserFleetSlotsCount ($props) { | ||
$user = &$props['user']; | ||
$timestamp = $props['timestamp']; | ||
|
||
$computerTechLevel = Users\getUsersTechLevel(108, $user); | ||
$isAdmiralActive = ($user['admiral_time'] > $timestamp); | ||
|
||
// return 0; | ||
|
||
return ( | ||
1 + | ||
$computerTechLevel + | ||
($isAdmiralActive ? 2 : 0) | ||
); | ||
} | ||
|
||
?> |