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

  • AssetCollectionInterface
  • AssetInterface
  • ContentViewInterface
  • HttpContextInterface
  • HttpContextReaderInterface
  • HttpControllerResponseInterface
  • HttpDispatcherInterface
  • HttpResponseProcessorInterface
  • HttpServiceFactoryInterface
  • HttpServiceInterface
  • HttpViewControllerFactoryInterface
  • HttpViewControllerInterface
  • HttpViewControllerRegistryInterface

Interface HttpContextInterface

Interface HttpContextInterface

Direct known implementers

HttpContext

Package: Http\Interfaces
Category: System
Located at SystemServices/Http/ValueObjects/Interfaces/HttpContextInterface.inc.php

Methods summary

public array|string|integer|float
# getServerItem( string $keyName )

Returns an item of the $_SERVER array by the given key name.

Returns an item of the $_SERVER array by the given key name.

Parameters

$keyName
Key to determine which value of the $_SERVER array should be returned.

Returns

array|string|integer|float
Expected item of $_SERVER array.
public array|string|integer|float
# getGetItem( string $keyName )

Returns an item of the $_GET array by the given key name.

Returns an item of the $_GET array by the given key name.

Parameters

$keyName
Key to determine which value of the $_GET array should be returned.

Returns

array|string|integer|float
Expected item of $_GET array.
public array|string|integer|float
# getPostItem( string $keyName )

Returns an item of the $_POST array by the given key name.

Returns an item of the $_POST array by the given key name.

Parameters

$keyName
Key to determine which value of the $_POST array should be returned.

Returns

array|string|integer|float
Expected item of $_POST array.
public array|string|integer|float
# getCookieItem( string $keyName )

Returns an item of the $_COOKIE array by the given key name.

Returns an item of the $_COOKIE array by the given key name.

Parameters

$keyName
Key to determine which value of the $_COOKIE array should be returned.

Returns

array|string|integer|float
Expected item of $_COOKIE array.
public array|string|integer|float
# getSessionItem( string $keyName )

Returns an item of the $_SESSION array by the given key name.

Returns an item of the $_SESSION array by the given key name.

Parameters

$keyName
Key to determine which value of the $_SESSION array should be returned.

Returns

array|string|integer|float
Expected item of $_SESSION array.
public array
# getGetArray( )

Returns an array which is equal to the global $_GET variable in an object oriented layer.

Returns an array which is equal to the global $_GET variable in an object oriented layer.

Returns

array
Array which is equal to $_GET.
public array
# getPostArray( )

Returns an array which is equal to the global $_POST variable in an object oriented layer.

Returns an array which is equal to the global $_POST variable in an object oriented layer.

Returns

array
Array which is equal to $_POST.
API documentation generated by ApiGen