当前位置: 首页>>代码示例>>PHP>>正文


PHP sfEvent::offsetExists方法代码示例

本文整理汇总了PHP中sfEvent::offsetExists方法的典型用法代码示例。如果您正苦于以下问题:PHP sfEvent::offsetExists方法的具体用法?PHP sfEvent::offsetExists怎么用?PHP sfEvent::offsetExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sfEvent的用法示例。


在下文中一共展示了sfEvent::offsetExists方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: sendRegistration

 public static function sendRegistration(sfEvent $event)
 {
     $controller = $event->getSubject();
     $user = $controller->user;
     $password = $event->offsetExists('password') ? $event['password'] : $controller->getUser()->getAttribute('user_password', null, 'doPreUser');
     $subject = sfConfig::get('sf_i18n') ? $controller->getContext()->getI18N()->__('Thank you for registering') : 'Thank you for registering';
     // message should be sent immediately
     $controller->getMailer()->composeAndSend(sfConfig::get('app_doAuth_email_from', 'mailer@' . $controller->getRequest()->getHost()), array($user->getEmail() => $user->getUsername()), $subject, $controller->getPartial(sfConfig::get('app_doAuth_email_module', $controller->getModuleName()) . '/mail_registration', array('user' => $controller->user, 'password' => $password)), 'text/plain');
 }
开发者ID:sergiovier,项目名称:doAuthPlugin,代码行数:9,代码来源:doAuthMailer.php


注:本文中的sfEvent::offsetExists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。