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


PHP Iface::getView方法代码示例

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


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

示例1: createClient

 /**
  * Creates a new client object.
  *
  * @param \Aimeos\MShop\Context\Item\Iface $context Shop context instance with necessary objects
  * @param array List of file system paths where the templates are stored
  * @param string $type Type of the client, e.g 'product' for \Aimeos\Admin\JQAdm\Product\Standard
  * @param string|null $name Admin name (default: "Standard")
  * @return \Aimeos\Admin\JQAdm\Iface admin client implementing \Aimeos\Admin\JQAdm\Iface
  * @throws \Aimeos\Admin\JQAdm\Exception If requested client implementation couldn't be found or initialisation fails
  */
 public static function createClient(\Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $type, $name = null)
 {
     if (empty($type)) {
         throw new \Aimeos\Admin\JQAdm\Exception(sprintf('Admin JQAdm type is empty'));
     }
     if (ctype_alnum($type) === false) {
         throw new \Aimeos\Admin\JQAdm\Exception(sprintf('Invalid characters in client name "%1$s"', $type));
     }
     $factory = '\\Aimeos\\Admin\\JQAdm\\' . ucwords($type) . '\\Factory';
     if (class_exists($factory) === false) {
         throw new \Aimeos\Admin\JQAdm\Exception(sprintf('Class "%1$s" not available', $factory));
     }
     $client = @call_user_func_array(array($factory, 'createClient'), array($context, $templatePaths, $name));
     if ($client === false) {
         throw new \Aimeos\Admin\JQAdm\Exception(sprintf('Invalid factory "%1$s"', $factory));
     }
     $client->setView($context->getView());
     return $client;
 }
开发者ID:aimeos,项目名称:ai-admin-jqadm,代码行数:29,代码来源:Factory.php

示例2: createClientNew

 /**
  * Creates a new client specified by the given path of client names.
  *
  * @param \Aimeos\MShop\Context\Item\Iface $context Context object required by clients
  * @param array $templatePaths List of file system paths where the templates are stored
  * @param string $path Name of the client separated by slashes, e.g "product/stock"
  * @param string|null $name Name of the client implementation ("Standard" if null)
  * @return \Aimeos\Admin\JsonAdm\Iface JSON admin instance
  * @throws \Aimeos\Admin\JsonAdm\Exception If the given path is invalid
  */
 protected static function createClientNew(\Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $path, $name)
 {
     $parts = explode('/', $path);
     foreach ($parts as $key => $part) {
         if (ctype_alnum($part) === false) {
             $msg = sprintf('Invalid client "%1$s" in "%2$s"', $part, $path);
             throw new \Aimeos\Admin\JsonAdm\Exception($msg, 400);
         }
         $parts[$key] = ucwords($part);
     }
     $view = $context->getView();
     $factory = '\\Aimeos\\Admin\\JsonAdm\\' . join('\\', $parts) . '\\Factory';
     if (class_exists($factory) === true) {
         $args = array($context, $view, $templatePaths, $path, $name);
         if (($client = @call_user_func_array(array($factory, 'createClient'), $args)) === false) {
             throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid factory "%1$s"', $factory), 400);
         }
     } else {
         $client = self::createClientRoot($context, $view, $templatePaths, $path, $name);
     }
     return $client;
 }
开发者ID:aimeos,项目名称:ai-admin-jsonadm,代码行数:32,代码来源:Factory.php

示例3: sendMail

 /**
  * Sends the notification e-mail for the given customer address and products
  *
  * @param \Aimeos\MShop\Context\Item\Iface $context Context item object
  * @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address of the customer
  * @param array $products List of products a notification should be sent for
  */
 protected function sendMail(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Common\Item\Address\Iface $address, array $products)
 {
     $view = $context->getView();
     $view->extProducts = $products;
     $view->extAddressItem = $address;
     $helper = new \Aimeos\MW\View\Helper\Translate\Standard($view, $context->getI18n($address->getLanguageId()));
     $view->addHelper('translate', $helper);
     $mailer = $context->getMail();
     $message = $mailer->createMessage();
     $helper = new \Aimeos\MW\View\Helper\Mail\Standard($view, $message);
     $view->addHelper('mail', $helper);
     $client = $this->getClient($context);
     $client->setView($view);
     $client->getHeader();
     $client->getBody();
     $mailer->send($message);
 }
开发者ID:aimeos,项目名称:ai-client-html,代码行数:24,代码来源:Standard.php

示例4: sendEmail

 /**
  * Sends the account creation e-mail to the e-mail address of the customer
  *
  * @param \Aimeos\MShop\Context\Item\Iface $context Context item object
  * @param \Aimeos\MShop\Customer\Item\Iface $item Customer item object
  * @param string $password Customer clear text password
  */
 protected function sendEmail(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $item, $password)
 {
     $address = $item->getPaymentAddress();
     $view = $context->getView();
     $view->extAddressItem = $address;
     $view->extAccountCode = $item->getCode();
     $view->extAccountPassword = $password;
     $helper = new \Aimeos\MW\View\Helper\Translate\Standard($view, $context->getI18n($address->getLanguageId()));
     $view->addHelper('translate', $helper);
     $mailer = $context->getMail();
     $message = $mailer->createMessage();
     $helper = new \Aimeos\MW\View\Helper\Mail\Standard($view, $message);
     $view->addHelper('mail', $helper);
     $client = $this->getClient($context);
     $client->setView($view);
     $client->getHeader();
     $client->getBody();
     $mailer->send($message);
 }
开发者ID:aimeos,项目名称:ai-client-html,代码行数:26,代码来源:Standard.php


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