Файл: sngine-v2.8/Script/includes/ajax/core/activation_phone_reset.php
Строк: 32
<?php
/**
* ajax -> core -> activation phone reset
*
* @package Sngine
* @author Zamblek
*/
// fetch bootstrap
require('../../../bootstrap.php');
// check AJAX Request
is_ajax();
// check user logged in
if(!$user->_logged_in) {
modal('LOGIN');
}
// check user activated
if(!$system['activation_enabled'] || $user->_data['user_activated']) {
modal("SUCCESS", __("Activated"), __("Your account already activated!"));
}
// check activation type
if($system['activation_type'] != "sms") {
_error(400);
}
try {
// activation phone reset
$user->activation_phone_reset($_POST['phone']);
if($user->_data['user_phone']) {
modal("SUCCESS", __("Your phone has been changed"), __("Please check your phone and copy the verification code to complete the verification process"));
} else {
return_json( array('callback' => 'window.location.reload();') );
}
} catch (Exception $e) {
return_json( array('error' => true, 'message' => $e->getMessage()) );
}
?>