本文整理汇总了PHP中UserAuth::getProfileSettingsData方法的典型用法代码示例。如果您正苦于以下问题:PHP UserAuth::getProfileSettingsData方法的具体用法?PHP UserAuth::getProfileSettingsData怎么用?PHP UserAuth::getProfileSettingsData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserAuth
的用法示例。
在下文中一共展示了UserAuth::getProfileSettingsData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sendMessage
/**
* Send Message
*/
public function sendMessage($h)
{
$result = $h->sendMessage($this->to, '', $this->subject, $this->body);
if (is_array($result)) {
// error array!
$this->errors = $result;
return false;
} else {
// must be the insert id:
$this->id = $result;
}
// code here to call sendEmailNotification IF PERMITTED
$recipient = new UserAuth();
$recipient_id = $h->getUserIdFromName($this->to);
$recipient->getUserBasic($h, $recipient_id);
$recipient_settings = $recipient->getProfileSettingsData($h, 'user_settings');
if ($recipient_settings['pm_notify']) {
$this->sendEmailNotification($h);
}
return true;
}