當前位置: 首頁>>代碼示例>>PHP>>正文


PHP email::__shortcuts方法代碼示例

本文整理匯總了PHP中email::__shortcuts方法的典型用法代碼示例。如果您正苦於以下問題:PHP email::__shortcuts方法的具體用法?PHP email::__shortcuts怎麽用?PHP email::__shortcuts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在email的用法示例。


在下文中一共展示了email::__shortcuts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

                    $this->mail->SetOptions($options);
                    $status = $this->mail->SendMail($this->pdh->get('user', 'email', array($user_id)), $this->user->data['user_email'], $this->in->get('subject'), $this->in->get('body'));
                    if ($status) {
                        $this->core->message($this->user->lang('adduser_send_mail_suc'), $this->user->lang('success'), 'green', true);
                        $this->tpl->add_js("jQuery.FrameDialog.closeDialog();");
                    } else {
                        $this->core->message($this->user->lang('error_email_send'), $this->user->lang('error'), 'red');
                    }
                } else {
                    $this->core->message($this->user->lang('fv_invalid_email'), $this->user->lang('error'), 'red');
                }
            } else {
                message_die($this->user->lang('noauth'), $this->user->lang('noauth_default_title'), 'access_denied');
            }
        }
    }
    public function display()
    {
        $user_id = $this->in->get('user', 0);
        if ($user_id < 1) {
            $this->core->message($this->user->lang('error_user_not_found'), $this->user->lang('error'), 'red');
        } else {
            $this->tpl->assign_vars(array('USER_ID' => $user_id, 'USERNAME' => $this->pdh->get('user', 'name', array($user_id)), 'BODY' => $this->in->get('body', ''), 'SUBJECT' => $this->in->get('subject', '')));
        }
        $this->core->set_vars(array('page_title' => $this->user->lang('adduser_send_mail'), 'template_file' => 'email.html', 'header_format' => 'simple', 'display' => true));
    }
}
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
    registry::add_const('short_email', email::__shortcuts());
}
registry::register('email');
開發者ID:ubick,項目名稱:lorekeepers.org,代碼行數:31,代碼來源:email.php


注:本文中的email::__shortcuts方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。