Composable Commerce PHP SDKPHP SDK
  • Namespace
  • Class
  • Tree

Namespaces

  • Commercetools
    • Commons
      • Helper
    • Core
      • Builder
        • Request
        • Update
      • Cache
      • Client
        • Adapter
        • OAuth
      • Error
      • Helper
        • Annotate
        • State
          • Renderer
        • Subscriber
          • Log
      • Model
        • ApiClient
        • Cart
        • CartDiscount
        • Category
        • Channel
        • Common
        • Customer
        • CustomerGroup
        • CustomField
        • CustomObject
        • DiscountCode
        • Extension
        • Inventory
        • Message
        • Order
        • OrderEdit
        • Payment
        • Product
          • Search
        • ProductDiscount
        • ProductSelection
        • ProductType
        • Project
        • Review
        • ShippingMethod
        • ShoppingList
        • State
        • Store
        • Subscription
        • TaxCategory
        • Type
        • Zone
      • Request
        • ApiClients
        • CartDiscounts
          • Command
        • Carts
          • Command
        • Categories
          • Command
        • Channels
          • Command
        • CustomerGroups
          • Command
        • Customers
          • Command
        • CustomField
          • Command
        • CustomObjects
        • DiscountCodes
          • Command
        • Extensions
          • Command
        • GraphQL
        • InStores
        • Inventory
          • Command
        • Me
          • Command
        • Messages
        • OrderEdits
          • Command
          • StagedOrder
            • Command
        • Orders
          • Command
        • Payments
          • Command
        • ProductDiscounts
          • Command
        • Products
          • Command
        • ProductSelections
          • Command
        • ProductTypes
          • Command
        • Project
          • Command
        • Query
        • Reviews
          • Command
        • ShippingMethods
          • Command
        • ShoppingLists
          • Command
        • States
          • Command
        • Stores
          • Command
        • Subscriptions
          • Command
        • TaxCategories
          • Command
        • Types
          • Command
        • Zones
          • Command
      • Response

Classes

  • ApiClientRequestBuilder
  • CartDiscountRequestBuilder
  • CartRequestBuilder
  • CategoryRequestBuilder
  • ChannelRequestBuilder
  • CustomerGroupRequestBuilder
  • CustomerRequestBuilder
  • CustomObjectRequestBuilder
  • DiscountCodeRequestBuilder
  • ExtensionRequestBuilder
  • GraphQLRequestBuilder
  • InventoryRequestBuilder
  • MeCartRequestBuilder
  • MeOrderRequestBuilder
  • MeRequestBuilder
  • MeShoppingListRequestBuilder
  • MessageRequestBuilder
  • OrderEditRequestBuilder
  • OrderRequestBuilder
  • PaymentRequestBuilder
  • ProductDiscountRequestBuilder
  • ProductProjectionRequestBuilder
  • ProductRequestBuilder
  • ProductSelectionRequestBuilder
  • ProductTypeRequestBuilder
  • ProjectRequestBuilder
  • RequestBuilder
  • ReviewRequestBuilder
  • ShippingMethodRequestBuilder
  • ShoppingListRequestBuilder
  • StateRequestBuilder
  • StoreRequestBuilder
  • SubscriptionRequestBuilder
  • TaxCategoryRequestBuilder
  • TypeRequestBuilder
  • ZoneRequestBuilder
  1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 
<?php
// phpcs:disable Generic.Files.LineLength
namespace Commercetools\Core\Builder\Request;

use Commercetools\Core\Request\Products\ProductProjectionByIdGetRequest;
use Commercetools\Core\Request\Products\ProductProjectionByKeyGetRequest;
use Commercetools\Core\Request\Products\ProductProjectionBySkuGetRequest;
use Commercetools\Core\Request\Products\ProductProjectionBySlugGetRequest;
use Commercetools\Core\Request\Products\ProductProjectionQueryRequest;
use Commercetools\Core\Request\Products\ProductProjectionSearchRequest;
use Commercetools\Core\Request\Products\ProductsSuggestRequest;
use Commercetools\Core\Model\Common\LocalizedString;

class ProductProjectionRequestBuilder
{

    /**
     * @link https://docs.commercetools.com/http-api-projects-productProjections.html#get-productprojection-by-id
     * @param string $id
     * @param bool $staged
     * @return ProductProjectionByIdGetRequest
     */
    public function getById($id, $staged = false)
    {
        $request = ProductProjectionByIdGetRequest::ofId($id)->staged($staged);
        return $request;
    }

    /**
     * @link https://docs.commercetools.com/http-api-projects-productProjections.html#get-productprojection-by-key
     * @param string $key
     * @param bool $staged
     * @return ProductProjectionByKeyGetRequest
     */
    public function getByKey($key, $staged = false)
    {
        $request = ProductProjectionByKeyGetRequest::ofKey($key)->staged($staged);
        return $request;
    }

    /**
     *
     * @param string $sku
     * @param bool $staged
     * @return ProductProjectionBySkuGetRequest
     */
    public function getBySku($sku, $staged = false)
    {
        $request = ProductProjectionBySkuGetRequest::ofSku($sku)->staged($staged);
        return $request;
    }

    /**
     *
     * @param string $slug
     * @param array $languages
     * @param bool $staged
     * @return ProductProjectionBySlugGetRequest
     */
    public function getBySlug($slug, array $languages, $staged = false)
    {
        $request = ProductProjectionBySlugGetRequest::ofSlugAndLanguages($slug, $languages)->staged($staged);
        return $request;
    }

    /**
     * @link https://docs.commercetools.com/http-api-projects-products.html#query-productprojections
     * @param bool $staged
     * @return ProductProjectionQueryRequest
     */
    public function query($staged = false)
    {
        $request = ProductProjectionQueryRequest::of()->staged($staged);
        return $request;
    }

    /**
     * @link https://docs.commercetools.com/http-api-projects-products-search.html#search-productprojections
     * @param bool $staged
     * @return ProductProjectionSearchRequest
     */
    public function search($staged = false)
    {
        $request = ProductProjectionSearchRequest::of()->staged($staged);
        return $request;
    }

    /**
     * @link https://docs.commercetools.com/http-api-projects-products-suggestions.html#suggest-query
     * @param LocalizedString $keywords
     * @param bool $staged
     * @return ProductsSuggestRequest
     */
    public function suggest(LocalizedString $keywords, $staged = false)
    {
        $request = ProductsSuggestRequest::ofKeywords($keywords)->staged($staged);
        return $request;
    }

    /**
     * @return ProductProjectionRequestBuilder
     */
    public function of()
    {
        return new self();
    }
}
PHP SDK API documentation generated by ApiGen