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


PHP Generic::start方法代码示例

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


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

示例1: execute

 /**
  * Initiate a session for unregistered users. Send back the session id.
  *
  * @return void
  */
 public function execute()
 {
     $this->session->start('frontend');
     $this->session->setUserId(0);
     $this->session->setUserType(UserIdentifier::USER_TYPE_GUEST);
     $this->session->regenerateId(true);
 }
开发者ID:Atlis,项目名称:docker-magento2,代码行数:12,代码来源:Anonymous.php

示例2: execute

 /**
  * Login registered users and initiate a session. Send back the session id.
  *
  * Expects a POST. ex for JSON  {"username":"user@magento.com", "password":"userpassword"}
  *
  * @return void
  */
 public function execute()
 {
     $contentTypeHeaderValue = $this->getRequest()->getHeader('Content-Type');
     $contentType = $this->getContentType($contentTypeHeaderValue);
     $loginData = null;
     try {
         $loginData = $this->deserializerFactory->get($contentType)->deserialize($this->getRequest()->getRawBody());
     } catch (Exception $e) {
         $this->getResponse()->setHttpResponseCode($e->getCode());
         return;
     }
     if (!$loginData || $this->getRequest()->getMethod() !== \Magento\Webapi\Model\Rest\Config::HTTP_METHOD_POST) {
         $this->getResponse()->setHttpResponseCode(HttpException::HTTP_BAD_REQUEST);
         return;
     }
     $customerData = null;
     try {
         $customerData = $this->customerAccountService->authenticate($loginData['username'], $loginData['password']);
     } catch (AuthenticationException $e) {
         $this->getResponse()->setHttpResponseCode(HttpException::HTTP_UNAUTHORIZED);
         return;
     }
     $this->session->start('frontend');
     $this->session->setUserId($customerData->getId());
     $this->session->setUserType(UserIdentifier::USER_TYPE_CUSTOMER);
     $this->session->regenerateId(true);
 }
开发者ID:Atlis,项目名称:docker-magento2,代码行数:34,代码来源:Index.php


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