-
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 email address process entry creator to an util
- Loading branch information
Showing
3 changed files
with
49 additions
and
4 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
40 changes: 40 additions & 0 deletions
40
modules/settings/utils/queries/createEmailChangeProcessEntry.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,40 @@ | ||
<?php | ||
|
||
namespace UniEngine\Engine\Modules\Settings\Utils\Queries; | ||
|
||
/** | ||
* @param array $params | ||
* @param arrayRef $params['user'] | ||
* @param string $params['newEmailAddress'] | ||
* @param string $params['changeTokenOldAddress'] | ||
* @param string $params['changeTokenNewAddress'] | ||
* @param number $params['currentTimestamp'] | ||
*/ | ||
function createEmailChangeProcessEntry($params) { | ||
$user = &$params['user']; | ||
$newEmailAddress = $params['newEmailAddress']; | ||
$changeTokenOldAddress = $params['changeTokenOldAddress']; | ||
$changeTokenNewAddress = $params['changeTokenNewAddress']; | ||
$currentTimestamp = $params['currentTimestamp']; | ||
|
||
$query = ( | ||
"INSERT INTO {{table}} " . | ||
"VALUES " . | ||
"(" . | ||
"NULL, " . | ||
"{$currentTimestamp}, " . | ||
"{$user['id']}, " . | ||
"'{$user['email']}', " . | ||
"'{$newEmailAddress}', " . | ||
"0, " . | ||
"0, " . | ||
"'{$changeTokenOldAddress}', " . | ||
"'{$changeTokenNewAddress}' " . | ||
") " . | ||
";" | ||
); | ||
|
||
doquery($query, 'mailchange'); | ||
} | ||
|
||
?> |
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