本文整理汇总了PHP中ServiceFactory类的典型用法代码示例。如果您正苦于以下问题:PHP ServiceFactory类的具体用法?PHP ServiceFactory怎么用?PHP ServiceFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ServiceFactory类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
public function execute()
{
$checkoutService = ServiceFactory::factory('Checkout');
$couponCode = $_REQUEST['coupon_id'];
$checkoutService->updateCoupon($couponCode);
$this->setSuccess($checkoutService->detail());
}
示例2: execute
public function execute()
{
switch ($_REQUEST['checkout_type']) {
case 'cart':
if ($_REQUEST['payment_method_id'] == 'paypal') {
$actionInstance = ActionFactory::factory('KanCart.ShoppingCart.PayPalWPS.Done');
$actionInstance->init();
$actionInstance->execute();
$this->result = $actionInstance->getResult();
} else {
$kancartPaymentService = ServiceFactory::factory('KancartPayment');
list($result, $order_id) = $kancartPaymentService->kancartPaymentDone($_REQUEST['order_id'], $_REQUEST['custom_kc_comments'], $_REQUEST['payment_status']);
if ($result === TRUE) {
$orderService = ServiceFactory::factory('Order');
$info = $orderService->getPaymentOrderInfoById($order_id);
$this->setSuccess($info);
} else {
$this->setError('0xFFFF', $order_id);
}
}
case 'order':
break;
default:
break;
}
}
示例3: execute
public function execute()
{
$userService = ServiceFactory::factory('User');
$username = is_null($this->getParam('uname')) ? '' : trim($this->getParam('uname'));
if (empty($username)) {
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, 'User name is empty.');
return;
}
$encryptedPassword = is_null($this->getParam('pwd')) ? '' : trim($this->getParam('pwd'));
$password = CryptoUtil::Crypto($encryptedPassword, 'AES-256', KANCART_APP_SECRET, false);
if (!$password) {
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, 'Password is empty.');
return;
}
$loginInfo = array('email' => $username, 'password' => $password);
$login = $userService->login($loginInfo);
if (is_string($login)) {
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, $login);
return;
}
$cacheKey = $this->customer->getCustomerGroupId() . '-' . $this->config->get('config_customer_price');
if ($this->config->get('config_tax')) {
$query = $this->db->query("SELECT gz.geo_zone_id FROM " . DB_PREFIX . "geo_zone gz LEFT JOIN " . DB_PREFIX . "zone_to_geo_zone z2gz ON (z2gz.geo_zone_id = gz.geo_zone_id) WHERE (z2gz.country_id = '0' OR z2gz.country_id = '" . (int) $this->customer->country_id . "') AND (z2gz.zone_id = '0' OR z2gz.zone_id = '" . (int) $this->customer->zone_id . "')");
if ($query->num_rows) {
$cacheKey .= '-1-' . $query->row['geo_zone_id'];
} else {
$cacheKey .= '-1-0';
}
} else {
$cacheKey .= '-0-0';
}
$info = array('sessionkey' => md5($username . uniqid(mt_rand(), true)), 'cachekey' => $cacheKey);
$this->setSuccess($info);
}
示例4: execute
public function execute()
{
$orderId = $this->getParam('order_id');
$orderService = ServiceFactory::factory('Order');
$oneOrderInfo = $orderService->getOneOrderInfoById($orderId);
$this->setSuccess(array('order' => $oneOrderInfo));
}
示例5: execute
public function execute()
{
$cartItemId = $this->getParam('cart_item_id');
$cartService = ServiceFactory::factory('ShoppingCart');
$cartService->remove($cartItemId);
$this->setSuccess($cartService->get());
}
示例6: execute
public function execute()
{
$userService = ServiceFactory::factory('User');
$username = is_null($this->getParam('email')) ? '' : trim($this->getParam('email'));
$enCryptedPassword = is_null($this->getParam('pwd')) ? '' : trim($this->getParam('pwd'));
$password = CryptoUtil::Crypto($enCryptedPassword, 'AES-256', KANCART_APP_SECRET, false);
$this->language->load('account/register');
if (strlen(utf8_decode($username)) > 96 || !preg_match('/^[_a-z0-9-]+(\\.[_a-z0-9-]+)*@[a-z0-9-]+(\\.[a-z0-9-]+)*(\\.[a-z]{2,3})$/i', $username)) {
$this->setError(KancartResult::ERROR_USER_INVALID_USER_DATA, $this->language->get('error_email'));
return;
}
if (strlen($password) < 4 || strlen($password) > 20) {
$this->setError(KancartResult::ERROR_USER_INVALID_USER_DATA, $this->language->get('error_password'));
return;
}
$firstname = is_null($this->getParam('firstname')) ? '' : trim($this->getParam('firstname'));
$lastname = is_null($this->getParam('lastname')) ? '' : trim($this->getParam('lastname'));
$telephone = is_null($this->getParam('telephone')) ? '' : trim($this->getParam('telephone'));
$regisetInfo = array('firstname' => $firstname, 'lastname' => $lastname, 'email' => $username, 'telephone' => $telephone, 'password' => $password);
if (!$userService->register($regisetInfo)) {
$this->setError(KancartResult::ERROR_USER_INVALID_USER_DATA, $msg);
return;
}
// succed registering
$this->setSuccess();
}
示例7: execute
public function execute()
{
if (!$this->cart->hasProducts()) {
$this->setSuccess(array('redirect_to_page' => 'shopping_cart', 'messages' => array('Shopping Cart is empty.')));
return;
}
$this->setSuccess(ServiceFactory::factory('Checkout')->detail());
}
示例8: getUser
protected function getUser()
{
$userId = $this->getSession()->get('userId');
if (!$userId) {
return null;
}
$user = \ServiceFactory::getInstance()->getUserRepository()->findOneById($userId);
return $user;
}
示例9: fromJSON
public static function fromJSON($s)
{
$url = self::translateURL($s->url);
//if ($s->type == 'Service')
$service = ServiceFactory::newService($s->name, @$s->cmd, $url);
//elseif ($s->type == 'ServiceWeb')
// $service = ServiceFactory::newServiceWeb($s->name, $url);
return $service;
}
示例10: execute
public function execute()
{
$order_id = $this->session->data['order_id'];
$paypalWpsService = ServiceFactory::factory('PaypalWps');
$paypalWpsService->paypalWpsDone();
$tx = max($_REQUEST['tx'], $_REQUEST['txn_id']);
$orderService = ServiceFactory::factory('Order');
$info = $orderService->getPaymentOrderInfoById($order_id, $tx);
$this->setSuccess($info);
}
示例11: load
public function load()
{
$manager = \ServiceFactory::getInstance()->getEntityManager();
$admin = $this->createAdmin('FirstName', 'LastName', 'email@address.com', 'password');
$manager->save($admin);
for ($i = 1; $i <= self::USERS_TO_CREATE; $i++) {
$user = $this->createUser("FirstName {$i}", "LastName {$i}", "email{$i}@address.com", "password{$i}");
$manager->save($user);
}
}
示例12: execute
public function execute()
{
$userService = ServiceFactory::factory('User');
$address = prepare_address();
$updateResult = $userService->updateAddress($address);
if ($updateResult === true) {
$this->setSuccess();
return;
}
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, join(',', $updateResult));
}
示例13: run
public function run()
{
$serviceFactory = \ServiceFactory::getInstance();
$request = $serviceFactory->getRequest();
$serviceFactory->getDispatcher()->dispatch('kernel.request', new RequestEvent($request));
$controllerPath = sprintf('Controller\\%sController', $request->getControllerName());
$actionMethod = sprintf('%sAction', $request->getActionName());
$actionDispatcher = new ActionDispatcher();
$response = $actionDispatcher->dispatch($controllerPath, $actionMethod);
$responseHandler = new ResponseHandler();
$responseHandler->handle($response);
}
示例14: getProducts
/**
* get products information
* @param type $cart
* @return array
* @author hujs
*/
public function getProducts()
{
$currency = $this->currency->getCode();
$items = array();
$productService = ServiceFactory::factory('Product');
$products = $this->cart->getProducts();
foreach ($products as $product) {
$productInfo = $productService->getProduct($product['product_id']);
$item = array('cart_item_id' => $product['key'], 'cart_item_key' => '', 'item_id' => $product['product_id'], 'item_title' => $productInfo['item_title'] . (!$product['stock'] ? '<font color = \'red\'>***' : ''), 'thumbnail_pic_url' => $productInfo['thumbnail_pic_url'], 'currency' => $currency, 'item_price' => $this->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax'))), 'qty' => $product['quantity'], 'display_attributes' => $this->getDisplayAttributes($product['option']), 'item_url' => $productInfo['item_url'], 'short_description' => $productInfo['short_description']);
$items[] = $item;
}
return $items;
}
示例15: execute
public function execute()
{
$userService = ServiceFactory::factory('User');
$addressBookId = intval($this->getParam('address_book_id'));
if ($addressBookId) {
$result = $userService->deleteAddress($addressBookId);
if (true === $result) {
$this->setSuccess();
return;
}
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, join(',', $result));
}
$this->setError(KancartResult::ERROR_USER_INPUT_PARAMETER, 'Address book is empty');
}