Overview
  • Package
  • Class
  • Tree
  • Todo

Packages

  • AddonValue
    • Interfaces
  • ApiV2Controllers
  • Category
    • Collections
    • Entities
    • Factories
    • Interfaces
    • Providers
    • Repositories
    • Storages
  • Customer
    • Address
    • Country
    • CountryZone
    • Interfaces
    • Validation
    • ValueObjects
  • Email
    • Collections
    • Entities
    • Exceptions
    • Interfaces
    • Repository
    • ValueObjects
  • Http
    • Collections
    • Exceptions
    • Factories
    • Interfaces
    • ValueObjects
  • Loaders
    • CrossCuttingLoader
    • GXCoreLoader
    • Interfaces
  • None
  • Order
    • Collections
    • Entities
    • Factories
    • Interfaces
    • Repositories
    • Storages
    • ValueObjects
  • Product
    • Collections
    • Entities
    • Factories
    • Interfaces
    • Providers
    • Repositories
    • Storages
  • ProductModule
    • Collections
    • Deleter
    • Entities
    • Factories
    • Interface
    • Interfaces
    • Reader
    • Repositories
    • Writer
  • Shared
    • Exceptions
    • FileSystem
    • Interfaces
    • Storage
    • Types
  • Statistics
    • Interfaces
  • UserConfiguration
    • Interfaces
    • Repository

Interfaces

  • OrderFactoryInterface
  • OrderInterface
  • OrderItemAttributeInterface
  • OrderItemAttributeRepositoryDeleterInterface
  • OrderItemAttributeRepositoryFactoryInterface
  • OrderItemAttributeRepositoryInterface
  • OrderItemAttributeRepositoryReaderInterface
  • OrderItemAttributeRepositoryWriterInterface
  • OrderItemFactoryInterface
  • OrderItemInterface
  • OrderItemPropertyFactoryInterface
  • OrderItemPropertyRepositoryDeleterInterface
  • OrderItemPropertyRepositoryReaderInterface
  • OrderItemPropertyRepositoryWriterInterface
  • OrderItemRepositoryDeleterInterface
  • OrderItemRepositoryInterface
  • OrderItemRepositoryReaderInterface
  • OrderItemRepositoryWriterInterface
  • OrderListGeneratorInterface
  • OrderObjectServiceInterface
  • OrderPaymentTypeInterface
  • OrderReadServiceInterface
  • OrderRepositoryDeleterInterface
  • OrderRepositoryInterface
  • OrderRepositoryReaderInterface
  • OrderRepositoryWriterInterface
  • OrderServiceSettingsInterface
  • OrderShippingTypeInterface
  • OrderStatusHistoryReaderInterface
  • OrderStatusHistoryWriterInterface
  • OrderTotalFactoryInterface
  • OrderTotalInterface
  • OrderTotalRepositoryDeleterInterface
  • OrderTotalRepositoryInterface
  • OrderTotalRepositoryReaderInterface
  • OrderTotalRepositoryWriterInterface
  • OrderWriteServiceInterface
  • StoredOrderItemAttributeInterface
  • StoredOrderItemInterface
  • StoredOrderTotalInterface

Interface OrderItemAttributeRepositoryInterface

Interface OrderItemAttributeRepositoryInterface

Direct known implementers

OrderItemAttributeRepository, OrderItemPropertyRepository

Package: Order\Interfaces
Category: System
Located at CoreServices/Order/Repositories/Interface/OrderItemAttributeRepositoryInterface.inc.php

Methods summary

public integer
# addToOrderItem( IdType $orderItemId, OrderItemAttributeInterface $orderItemAttribute )

Adds an attribute to an order item.

Adds an attribute to an order item.

Parameters

$orderItemId
ID of the order item.
$orderItemAttribute
Order item attribute to add.

Returns

integer
ID of stored order item attribute.
public OrderItemAttributeRepositoryInterface
# store( StoredOrderItemAttributeInterface $orderItemAttribute )

Saves the attribute to the repository.

Saves the attribute to the repository.

Parameters

$orderItemAttribute
Attribute to save.

Returns

OrderItemAttributeRepositoryInterface
Same instance for method chaining.
public StoredOrderItemAttributeInterface
# getItemAttributeById( IdType $orderItemAttributeId )

Returns a stored attribute by the given ID.

Returns a stored attribute by the given ID.

Parameters

$orderItemAttributeId
ID of item attribute.

Returns

StoredOrderItemAttributeInterface
Stored attribute.
public StoredOrderItemAttributeCollection
# getItemAttributesByOrderItemId( IdType $orderItemId )

Returns a stored attribute collection by the given order item ID.

Returns a stored attribute collection by the given order item ID.

Parameters

$orderItemId
ID of order item.

Returns

StoredOrderItemAttributeCollection
Stored item attribute collection.
public OrderItemAttributeRepositoryInterface
# deleteItemAttributeById( IdType $orderItemAttributeId )

Deletes an item attribute by the given item attribute ID.

Deletes an item attribute by the given item attribute ID.

Parameters

$orderItemAttributeId
ID of order item attribute.

Returns

OrderItemAttributeRepositoryInterface
Same instance for method chaining.
public OrderItemAttributeRepositoryInterface
# deleteItemAttributesByOrderItemId( IdType $orderItemId )

Deletes an item attribute by the given order item ID.

Deletes an item attribute by the given order item ID.

Parameters

$orderItemId
ID of order item.

Returns

OrderItemAttributeRepositoryInterface
Same instance for method chaining.
API documentation generated by ApiGen