-
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-224 Move user settings updater to an util
- Loading branch information
Showing
3 changed files
with
62 additions
and
29 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
46 changes: 46 additions & 0 deletions
46
modules/settings/utils/queries/updateUserSettings.query.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,46 @@ | ||
<?php | ||
|
||
namespace UniEngine\Engine\Modules\Settings\Utils\Queries; | ||
|
||
/** | ||
* @param array $params | ||
* @param arrayRef $params['user'] | ||
* @param array $params['changedUserParams'] | ||
* @param array $params['changedUserParamsTypes'] | ||
*/ | ||
function updateUserSettings($params) { | ||
$user = &$params['user']; | ||
$userId = $user['id']; | ||
$changedUserParams = $params['changedUserParams']; | ||
$changedUserParamsTypes = $params['changedUserParamsTypes']; | ||
|
||
$updateFields = []; | ||
|
||
foreach ($changedUserParams as $paramName => $newParamValue) { | ||
$user[$paramName] = $newParamValue; | ||
|
||
if ( | ||
isset($changedUserParamsTypes[$paramName]) && | ||
$changedUserParamsTypes[$paramName] == 's' | ||
) { | ||
$newParamValue = "'{$newParamValue}'"; | ||
} | ||
|
||
$updateFields[] = "`{$paramName}` = {$newParamValue}"; | ||
} | ||
|
||
$updateFieldsString = implode(', ', $updateFields); | ||
$query = ( | ||
"UPDATE {{table}} " . | ||
"SET " . | ||
"{$updateFieldsString} " . | ||
"WHERE " . | ||
"`id` = {$userId} " . | ||
"LIMIT 1 " . | ||
"; -- UniEngine\Engine\Modules\Settings\Utils\Queries\updateUserSettings" | ||
); | ||
|
||
doquery($query, 'users'); | ||
} | ||
|
||
?> |
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