本文整理汇总了PHP中BuckysUser::updateUserMessengerInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP BuckysUser::updateUserMessengerInfo方法的具体用法?PHP BuckysUser::updateUserMessengerInfo怎么用?PHP BuckysUser::updateUserMessengerInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BuckysUser
的用法示例。
在下文中一共展示了BuckysUser::updateUserMessengerInfo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: saveContactInfoAction
public function saveContactInfoAction()
{
$data = $_POST;
$token = isset($data['TOKEN']) ? trim($data['TOKEN']) : null;
if (!$token) {
return ['STATUS_CODE' => STATUS_CODE_BAD_REQUEST, 'DATA' => buckys_api_get_error_result('Api token should not be blank')];
}
if (!($userID = BuckysUsersToken::checkTokenValidity($token, "api"))) {
return ['STATUS_CODE' => STATUS_CODE_UNAUTHORIZED, 'DATA' => buckys_api_get_error_result('Api token is not valid.')];
}
$header = [];
$header['email'] = $data['email'];
$header['work_phone'] = $data['work_phone'];
$header['home_phone'] = $data['home_phone'];
$header['cell_phone'] = $data['cell_phone'];
$header['email_visibility'] = $data['email_visibility'];
$header['home_phone_visibility'] = $data['home_phone_visibility'];
$header['work_phone_visibility'] = $data['work_phone_visibility'];
$header['cell_phone_visibility'] = $data['cell_phone_visibility'];
$count = isset($data['COUNT']) ? $data['COUNT'] : 0;
$info = [];
for ($i = 0; $i < $count; $i++) {
$row = [];
$row['name'] = $data['CONTACT_NAME' . $i];
$row['type'] = $data['CONTACT_TYPE' . $i];
$row['visibility'] = $data['VISIBILITY' . $i];
$info[] = $row;
}
if (BuckysUser::updateUserFields($userID, $header) && BuckysUser::updateUserMessengerInfo($userID, $info)) {
return ['STATUS_CODE' => STATUS_CODE_OK, 'DATA' => ['STATUS' => 'SUCCESS']];
} else {
return ['STATUS_CODE' => STATUS_CODE_UNAUTHORIZED, 'DATA' => buckys_api_get_error_result('There was an error to saving your information.')];
}
exit;
}
示例2:
if ($_POST['action'] == 'save_address') {
$data = ['address1' => $_POST['address1'], 'address2' => $_POST['address2'], 'city' => $_POST['city'], 'state' => $_POST['state'], 'zip' => $_POST['zip'], 'country' => $_POST['country'], 'address_visibility' => $_POST['address_visibility']];
//Update User Phone numbers
if (BuckysUser::updateUserFields($userID, $data)) {
echo 'Success';
} else {
echo $db->getLastError();
}
exit;
}
//Save Contact Info
if ($_POST['action'] == 'save_messenger') {
$data = [];
for ($i = 0; $i < count($_POST['username']); $i++) {
$data[] = ['name' => $_POST['username'][$i], 'type' => $_POST['type'][$i], 'visibility' => $_POST['visibility'][$i]];
}
//Update User Phone numbers
if (BuckysUser::updateUserMessengerInfo($userID, $data)) {
echo 'Success';
} else {
echo $db->getLastError();
}
exit;
}
}
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
buckys_enqueue_javascript('info.js');
$TNB_GLOBALS['content'] = 'info_contact';
$TNB_GLOBALS['title'] = "Contact Info - " . TNB_SITE_NAME;
require DIR_FS_TEMPLATE . $TNB_GLOBALS['template'] . "/" . $TNB_GLOBALS['layout'] . ".php";