Full index

Package indexes


a b c d e f g h i j l m n o p r s t u w _
a
top
$absolutePath
the absolute path to the file containing the class definition
$amf0storedObjects
$amfVersion
either 0 or 3. This is stored here when deserializing, because the serializer needs the info
addFilter
register an object method for the given filter
addRole
AmfphpAuthentication::addRole() in AmfphpAuthentication.php
adminMethod
AuthenticationService::adminMethod() in AuthenticationService.php
method that is protected by authentication. Only "admin" role is authorized. (see getMethodRoles)
Amf3DeserializationTest
Amf3DeserializationTest in Amf3DeserializationTest.php
Unit tests for Amfphp_Core_Amf_Serializer, but using amf3 note: phpunit dataProvider mechanism doesn't work well, so lots of boiler plate code here. Oh well... A.S.
Amf3SerializationTest
Amf3SerializationTest in Amf3SerializationTest.php
Unit tests for Amfphp_Core_Amf_Serializer, but using amf3 note: phpunit dataProvider mechanism doesn't work well, so lots of boiler plate code here. Oh well... A.S.
Amf3TestData
Amf3TestData in Amf3TestData.php
See AmfTestData for details, this is the extension for Amf3
AmfDeserializerWrapper
AmfDeserializerWrapper in AmfDeserializerWrapper.php
This class exports some internal (public) methods. This way, those methods can be tested separately.
AmfphpAuthentication.php
AmfphpAuthentication.php in AmfphpAuthentication.php
AmfphpCharsetConverter.php
AmfphpCharsetConverter.php in AmfphpCharsetConverter.php
AmfphpCustomClassConverter.php
AmfphpCustomClassConverter.php in AmfphpCustomClassConverter.php
AcknowledgeMessage.php
AcknowledgeMessage.php in AcknowledgeMessage.php
AmfphpFlexMessaging.php
AmfphpFlexMessaging.php in AmfphpFlexMessaging.php
AmfphpJson.php
AmfphpJson.php in AmfphpJson.php
AmfphpLogger.php
AmfphpLogger.php in AmfphpLogger.php
AmfphpQuickServiceDebug.php
AmfphpQuickServiceDebug.php in AmfphpQuickServiceDebug.php
AmfphpQuickServiceDebugException.php
AmfphpQuickServiceDebugException.php in AmfphpQuickServiceDebugException.php
AmfphpAuthentication
AmfphpAuthentication in AmfphpAuthentication.php
Authentication for Amfphp.
AmfphpAuthenticationTest
AmfphpAuthenticationTest in AmfphpAuthenticationTest.php
Test class for AmfphpAuthentication.
AmfphpCharsetConverter
AmfphpCharsetConverter in AmfphpCharsetConverter.php
Converts strings to the right encoding in incoming and outgoing packets This works for nested objects.
AmfphpCharsetConverterTest
AmfphpCharsetConverterTest in AmfphpCharsetConverterTest.php
Test class for CharsetConverter.
AmfphpCustomClassConverter
AmfphpCustomClassConverter in AmfphpCustomClassConverter.php
Converts data from incoming packets with explicit types to custom classes.
AmfphpCustomClassConverterTest
AmfphpCustomClassConverterTest in AmfphpCustomClassConverterTest.php
Test class for CustomClassConverter.
AmfphpFlexMessaging
AmfphpFlexMessaging in AmfphpFlexMessaging.php
Support for flex messaging.
AmfphpFlexMessagingTest
AmfphpFlexMessagingTest in AmfphpFlexMessagingTest.php
Test class for FlexMessaging.
AmfphpFlexMessaging_AcknowledgeMessage
AmfphpFlexMessaging_AcknowledgeMessage in AcknowledgeMessage.php
Used to generate a Flex Acknowledge message.
AmfphpFlexMessaging_ErrorMessage
Used to generate a Flex Error message.
AmfphpJson
AmfphpJson in AmfphpJson.php
plugin allowing service calls coming from JavaScript encoded as JSON strings and returned as JSON strings using POST parameters.
AmfphpLogger
AmfphpLogger in AmfphpLogger.php
logs requests and responses in their serialized and deserialized forms. Note that this a crude logging system, with no levels, targets etc. like Log4j for example.
AmfphpLoggerTest
AmfphpLoggerTest in AmfphpLoggerTest.php
Test class for AmfphpLogger.
AmfphpQuickServiceDebug
AmfphpQuickServiceDebug in AmfphpQuickServiceDebug.php
A simple service browser with html only. Sometimes you don't need the full thing with AMF etc., so use this This plugin should not be deployed on a production server.
AmfphpQuickServiceDebugException
AmfphpQuickServiceDebugException in AmfphpQuickServiceDebugException.php
an exception thrown by AmfphpQuickServiceDebug. The message must be a ready to print html fragment
Amfphp_Core_Amf_Constants
Amfphp_Core_Amf_Constants in Constants.php
constants relative to the Amf format
Amfphp_Core_Amf_Deserializer
Amfphp_Core_Amf_Deserializer in Deserializer.php
Amfphp_Core_Amf_Deserializer takes the raw amf input stream and converts it PHP objects representing the data.
Amfphp_Core_Amf_Handler
This is the default handler for the gateway. It's job is to handle everything that is specific to Amf for the gateway.
Amfphp_Core_Amf_Header
Amfphp_Core_Amf_Header is a data type that represents a single header passed via Amf
Amfphp_Core_Amf_Message
Amfphp_Core_Amf_Message is a data type that encapsulates all of the various properties a Message object can have.
Amfphp_Core_Amf_Packet
content holder for an Amf Packet.
Amfphp_Core_Amf_Serializer
Amfphp_Core_Amf_Serializer in Serializer.php
AmfSerializer manages the job of translating PHP objects into the actionscript equivalent via Amf. The main method of the serializer is the serialize method which takes and AmfObject as it's argument and builds the resulting Amf Message.
Amfphp_Core_Amf_Types_ByteArray
Amfphp_Core_Amf_Types_ByteArray
Amf byte arrays will be converted to and from this class
Amfphp_Core_Amf_Types_Undefined
Amf Undefined will be converted to and from this class
Amfphp_Core_Amf_Util
utils for Amf handling
Amfphp_Core_Amf_UtilTest
Amfphp_Core_Amf_UtilTest in AmfUtilTest.php
Test class for Amfphp_Core_Amf_Util.
Amfphp_Core_Common_ClassFindInfo
The information necessary for a service router to be able to load a class' file and instanciate it could be extended later with namespaces when they become mainstream
Amfphp_Core_Common_IDeserializedRequestHandler
Amfphp_Core_Common_IDeserializedRequestHandler in IDeserializedRequestHandler.php
interface for a class that can handle a deserialized request
Amfphp_Core_Common_IDeserializer
interface for deserializers.
Amfphp_Core_Common_IExceptionHandler
Amfphp_Core_Common_IExceptionHandler in IExceptionHandler.php
An exception handler is passed an exception and must translate that into something that is serializable. In the case of Amf, it must return an Amfphp_Core_Amf_Packet object containing the relevant information
Amfphp_Core_Common_ISerializer
interface for serializers.
Amfphp_Core_Common_ServiceCallParameters
Amfphp_Core_Common_ServiceCallParameters in ServiceCallParameters.php
place holder class for the variables necessary to make a service call
Amfphp_Core_Common_ServiceRouter
The Service Router class is responsible for executing the remote service method and returning it's value.
Amfphp_Core_Common_ServiceRouterTest
Amfphp_Core_Common_ServiceRouterTest in ServiceRouterTest.php
Test class for Amfphp_Core_Common_ServiceRouter.
Amfphp_Core_Config
Amfphp_Core_Config in Config.php
responsable for loading and maintaining Amfphp configuration
Amfphp_Core_Exception
Amfphp_Core_Exception in Exception.php
just a type to distinguish between Amfphp exceptions and any other exceptions
Amfphp_Core_FilterManager
Amfphp_Core_FilterManager in FilterManager.php
This class is a kind of event dispatcher
Amfphp_Core_FilterManagerTest
Amfphp_Core_FilterManagerTest in FilterManagerTest.php
Test class for Amfphp_Core_FilterManager.
Amfphp_Core_Gateway
Amfphp_Core_Gateway in Gateway.php
where everything comes together in amfphp.
Amfphp_Core_GatewayTest
Amfphp_Core_GatewayTest in GatewayTest.php
Test class for Amfphp_Core_Gateway.
Amfphp_Core_HttpRequestGatewayFactory
Amfphp_Core_HttpRequestGatewayFactory in HttpRequestGatewayFactory.php
A gateway factory's job is to create a gateway. There can be many gateway factories, but as such the only one for now is this one, which creates a gateway assuming that the data to be processed is in an http request and thus available through the usual php globals
Amfphp_Core_PluginManager
Amfphp_Core_PluginManager in PluginManager.php
Loads plugins for Amfphp. Plugins consist of a folder in the plugins folder. The folder and the class should all have the same name. The file containing the class should be named with the class name with the ".php" suffix added.
Amfphp_Core_PluginManagerTest
Amfphp_Core_PluginManagerTest in PluginManagerTest.php
Test class for Amfphp_Core_PluginManager.
Amfphp_ROOTPATH
Amfphp_ROOTPATH in ClassLoader.php
include this to include amfphp note: this list could be generated. In the meantime maintain it manually.
AmfSerializerWrapper
AmfSerializerWrapper in AmfSerializerWrapper.php
This class exports some internal (public) methods. This way, those methods can be tested separately.
AmfTestData
AmfTestData in AmfTestData.php
test data for the Amfphp unit tests data types have the s prefix for "serialized" and "d" prefix for "deserialized" for Packets there is a flaw in the Amfphp design which means that serializng and deserializing is not symmetrical.
applyFunctionToContainedObjects
applies a function to all objects contained by $obj and $obj itself.
AuthenticationService
AuthenticationService in AuthenticationService.php
a simple authentication service, used for testing the AmfphpAuthentication plugin
Amf3DeserializationTest.php
Amf3DeserializationTest.php in Amf3DeserializationTest.php
Amf3SerializationTest.php
Amf3SerializationTest.php in Amf3SerializationTest.php
AmfDeserializerWrapper.php
AmfDeserializerWrapper.php in AmfDeserializerWrapper.php
AmfSerializerWrapper.php
AmfSerializerWrapper.php in AmfSerializerWrapper.php
AmfUtilTest.php
AmfUtilTest.php in AmfUtilTest.php
AmfphpAuthenticationTest.php
AmfphpAuthenticationTest.php in AmfphpAuthenticationTest.php
AmfphpCharsetConverterTest.php
AmfphpCharsetConverterTest.php in AmfphpCharsetConverterTest.php
AmfphpCustomClassConverterTest.php
AmfphpCustomClassConverterTest.php in AmfphpCustomClassConverterTest.php
AmfphpFlexMessagingTest.php
AmfphpFlexMessagingTest.php in AmfphpFlexMessagingTest.php
AmfphpLoggerTest.php
AmfphpLoggerTest.php in AmfphpLoggerTest.php
Amf3TestData.php
Amf3TestData.php in Amf3TestData.php
AmfTestData.php
AmfTestData.php in AmfTestData.php
AuthenticationService.php
AuthenticationService.php in AuthenticationService.php
b
top
$body
ByteArray.php
ByteArray.php in ByteArray.php
build2HeadersAndTwoMessagesPacket
an Amfphp_Core_Amf_Packet with two headers one with a string and one with a null , and two Messages, one with a string and one with a null
buildArray
Amf3TestData::buildArray() in Amf3TestData.php
buildBasics
Amf3TestData::buildBasics() in Amf3TestData.php
simple...
buildBoolean
AmfTestData::buildBoolean() in AmfTestData.php
buildByte
AmfTestData::buildByte() in AmfTestData.php
byte
buildByteArray
Amf3TestData::buildByteArray() in Amf3TestData.php
buildDate
AmfTestData::buildDate() in AmfTestData.php
buildDate
Amf3TestData::buildDate() in Amf3TestData.php
buildDouble
AmfTestData::buildDouble() in AmfTestData.php
double: 8 bytes. Careful of little/big endian so that test runs with both systems
buildDouble
Amf3TestData::buildDouble() in Amf3TestData.php
double: 0x05 as type marker, then 8 bytes. Careful of little/big endian so that test runs with both systems
buildEcmaArray
the writeArray method looks at the keys. If there are both numeric and string keys, the data is treated as an Ecma Array
buildEmptyPacket
test serializing an empty Amfphp_Core_Amf_Packet.
buildInt
AmfTestData::buildInt() in AmfTestData.php
int: 2 bytes
buildInt
Amf3TestData::buildInt() in Amf3TestData.php
buildLong
AmfTestData::buildLong() in AmfTestData.php
long: 4 bytes
buildLongString
buildLongUtf
AmfTestData::buildLongUtf() in AmfTestData.php
long utf: the length of the data on 4 bytes and then the char data. The char data is more than 65xxx long
buildNull
AmfTestData::buildNull() in AmfTestData.php
buildNullHeaderPacket
one header containing a null, and with required set to true
buildNullMessagePacket
no headers and a Message containing a null
buildNumber
AmfTestData::buildNumber() in AmfTestData.php
number: type is0, then value in (double)8 bytes. See buildDouble for little/big endian
buildObject
AmfTestData::buildObject() in AmfTestData.php
buildObject
Amf3TestData::buildObject() in Amf3TestData.php
buildObjectEnd
buildReference
TODO test with a real reference?
buildSimpleMirrorServiceRequestAndResponse
buildStrictArray
buildString
Amf3TestData::buildString() in Amf3TestData.php
note: no type markers here, because the method doesn't do it. So only the raw data.
buildString
AmfTestData::buildString() in AmfTestData.php
buildStringHeaderPacket
with one header containing a string
buildStringMessagePacket
no headers and a Message containing a string
buildTypedObject
note: the writeXml method gets rids of CRs and LFs
buildUndefined
buildUnsupported
TODO: no writeUnsupported method, and no PHP for unsupported. Write it A.S.
buildUtf
AmfTestData::buildUtf() in AmfTestData.php
utf: the length of the data on 2 bytes and then the char data
buildXml
AmfTestData::buildXml() in AmfTestData.php
note: the writeXml method gets rids of CRs and LFs
buildXml
Amf3TestData::buildXml() in Amf3TestData.php
bootstrap.php
bootstrap.php in bootstrap.php
c
top
$className
the name of the class.
$clientCharset
AmfphpCharsetConverter::$clientCharset in AmfphpCharsetConverter.php
the Charset that is used by the client. default utf-8 See all the possible codepages for iconv here: http://www.gnu.org/software/libiconv/
$clientId
$correlationId
$correlationId
$currentByte
The current seek cursor of the stream
$customClassFolderPaths
AmfphpCustomClassConverter::$customClassFolderPaths in AmfphpCustomClassConverter.php
paths to folders containing custom classes(relative or absolute)
ClassLoader.php
ClassLoader.php in ClassLoader.php
Constants.php
Constants.php in Constants.php
ClassFindInfo.php
ClassFindInfo.php in ClassFindInfo.php
Config.php
Config.php in Config.php
callFilters
call the functions registered for the given filter. There can be as many parameters as necessary, but only the first one can be changed and and returned by the callees.
clearSessionInfo
AmfphpAuthentication::clearSessionInfo() in AmfphpAuthentication.php
clears the session info set by the plugin. Use to logout
CLIENT_FAILURE_METHOD
The status method name
CLIENT_SUCCESS_METHOD
The success method name
CONTENT_TYPE
AmfphpQuickServiceDebug::CONTENT_TYPE in AmfphpQuickServiceDebug.php
if content type is not set or content is set to "application/x-www-form-urlencoded", this plugin will handle the request
CONTENT_TYPE
The AMf content type, for use in the headers
convertStringFromClientToPhpCharsets
converts the strings note: This is not a recursive function. Rather the recursion is handled by Amfphp_Core_Amf_Util::applyFunctionToContainedObjects.
convertStringFromPhpToClientCharsets
note: This is not a recursive function. Rather the recusrion is handled by Amfphp_Core_Amf_Util::applyFunctionToContainedObjects.
convertToTyped
AmfphpCustomClassConverter::convertToTyped() in AmfphpCustomClassConverter.php
if the object contains an explicit type marker, this method attempts to convert it to its typed counterpart if the typed class is already available, then simply creates a new instance of it. If not, attempts to load the file from the available service folders.
createGateway
create the gateway
CREDENTIALS_FIELD_PASSWORD
the password field in the credentials header
CREDENTIALS_FIELD_USERID
the user id field in the credentials header
CREDENTIALS_HEADER_NAME
this is the name of the credentials header. can be used for AS3, but is mostly AS2 only
d
top
$d2Headers2MessagesPacket
$data
data is the actual object data of the header key
$data
DummyClass::$data in AmfTestData.php
$data
$data
$dBinary
AmfTestData::$dBinary in AmfTestData.php
$dBoolean
AmfTestData::$dBoolean in AmfTestData.php
$dByte
AmfTestData::$dByte in AmfTestData.php
$dByteArray
Amf3TestData::$dByteArray in Amf3TestData.php
$dDate
AmfTestData::$dDate in AmfTestData.php
$dDate
Amf3TestData::$dDate in Amf3TestData.php
$dDenseArray
Amf3TestData::$dDenseArray in Amf3TestData.php
$dDouble
Amf3TestData::$dDouble in Amf3TestData.php
$dDouble
AmfTestData::$dDouble in AmfTestData.php
$dEcmaArray
AmfTestData::$dEcmaArray in AmfTestData.php
$dEmptyArray
Amf3TestData::$dEmptyArray in Amf3TestData.php
$dEmptyPacket
AmfTestData::$dEmptyPacket in AmfTestData.php
$dEmptyString
Amf3TestData::$dEmptyString in Amf3TestData.php
$deserializedPacket
the Packet contained in the serialized data
$destination
$dInt
AmfTestData::$dInt in AmfTestData.php
$dInt1
Amf3TestData::$dInt1 in Amf3TestData.php
$dInt2
Amf3TestData::$dInt2 in Amf3TestData.php
$disabledPlugins
array of plugins that are available but should be disabled
$dLong
AmfTestData::$dLong in AmfTestData.php
$dLongString
AmfTestData::$dLongString in AmfTestData.php
$dLongString
Amf3TestData::$dLongString in Amf3TestData.php
$dLongUtf
AmfTestData::$dLongUtf in AmfTestData.php
$dMixedArray
Amf3TestData::$dMixedArray in Amf3TestData.php
$dNull
AmfTestData::$dNull in AmfTestData.php
$dNullHeaderPacket
$dNullMessagePacket
$dNumber
AmfTestData::$dNumber in AmfTestData.php
$dObject
Amf3TestData::$dObject in Amf3TestData.php
$dObject
AmfTestData::$dObject in AmfTestData.php
$dObjectEnd
AmfTestData::$dObjectEnd in AmfTestData.php
$dReference
AmfTestData::$dReference in AmfTestData.php
$dStrictArray
AmfTestData::$dStrictArray in AmfTestData.php
$dString
Amf3TestData::$dString in Amf3TestData.php
$dString
AmfTestData::$dString in AmfTestData.php
$dStringHeaderPacket
$dStringMessagePacket
$dTypedObject
AmfTestData::$dTypedObject in AmfTestData.php
$dTypedObjectAsArray
$dummyConfVar
DummyPlugin::$dummyConfVar in DummyPlugin.php
$dUndefined
Amf3TestData::$dUndefined in Amf3TestData.php
$dUndefined
AmfTestData::$dUndefined in AmfTestData.php
$dUnsupported
AmfTestData::$dUnsupported in AmfTestData.php
$dUtf
AmfTestData::$dUtf in AmfTestData.php
$dXml
Amf3TestData::$dXml in Amf3TestData.php
$dXml
AmfTestData::$dXml in AmfTestData.php
$dXmlDocument
Amf3TestData::$dXmlDocument in Amf3TestData.php
Deserializer.php
Deserializer.php in Deserializer.php
DEFAULT_REQUEST_RESPONSE_URI
used when there is an error and the request response uri is not available
DeserializationTest
DeserializationTest in DeserializationTest.php
Unit tests for Amfphp_Core_Amf_Serializer note: phpunit dataProvider mechanism doesn't work well, so lots of boiler plate code here. Oh well... A.S.
deserialize
deserialize invokes this class to transform the raw data into valid object
deserialize
AmfphpQuickServiceDebug::deserialize() in AmfphpQuickServiceDebug.php
deserialize
deserialize
deserialize the data.
deserialize
AmfphpJson::deserialize() in AmfphpJson.php
DIRECTION_CLIENT_TO_PHP
transliterate direction
DIRECTION_PHP_TO_CLIENT
transliterate direction
DisabledPlugin
DisabledPlugin in DisabledPlugin.php
a dummy plugin to test if loading in the plugin manager works properly. It does mothing except increment a static counter to count instanciation
double
note: this function must be public to be called. This is called by filter
DummyClass
DummyClass in AmfTestData.php
used for testing with typed objects
DummyPlugin
DummyPlugin in DummyPlugin.php
a dummy plugin to test if loading in the plugin manager works properly. It does mothing except increment a static counter to count instanciation
DummyService
DummyService in DummyService.php
a dummy service to test locating services in folders
DeserializationTest.php
DeserializationTest.php in DeserializationTest.php
DummyService.php
DummyService.php in DummyService.php
DisabledPlugin.php
DisabledPlugin.php in DisabledPlugin.php
DummyPlugin.php
DummyPlugin.php in DummyPlugin.php
e
top
Exception.php
Exception.php in Exception.php
ErrorMessage.php
ErrorMessage.php in ErrorMessage.php
examplesGateway.php
examplesGateway.php in examplesGateway.php
exceptionCaughtHandler
logs the exception and the packet that caused it
executeServiceCall
loads and instanciates a service class matching $serviceName, then calls the function defined by $methodName using $parameters as parameters throws an exception if service not found.
f
top
$faultCode
$faultDetail
$faultString
FilterManager.php
FilterManager.php in FilterManager.php
FIELD_EXPLICIT_TYPE
this is the field where the class name of an object must be set so that it can be sent as a strongly typed object
FIELD_MESSAGE_ID
AmfphpFlexMessaging::FIELD_MESSAGE_ID in AmfphpFlexMessaging.php
filterAmfExceptionHandler
filterAmfRequestHeaderHandler
filterAmfRequestMessageHandler
filterDeserializedRequest
converts untyped objects to their typed counterparts. Loads the class if necessary
filterDeserializedRequest
logs the deserialized request
filterDeserializedRequest
converts untyped objects to their typed counterparts. Loads the class if necessary
filterDeserializedResponse
looks at the outgoing packet and sets the explicit type field so that the serializer sends it properly
filterDeserializedResponse
logs the deserialized response
filterDeserializedResponse
looks at the response and sets the explicit type field so that the serializer sends it properly
filterHandler
AmfphpQuickServiceDebug::filterHandler() in AmfphpQuickServiceDebug.php
if no content type, then returns this.
filterHandler
AmfphpJson::filterHandler() in AmfphpJson.php
If the content type contains the "json" string, returns this plugin
filterSerializedRequest
logs the serialized incoming packet
filterSerializedResponse
logs the deserialized incoming packet
filterServiceObject
called when the service object is created, just before the method call.
FILTER_AMF_EXCEPTION_HANDLER
filter called for exception handling an Amf packet/message, to give a plugin the chance to handle it.
FILTER_AMF_REQUEST_HEADER_HANDLER
filter called for each amf request header, to give a plugin the chance to handle it.
FILTER_AMF_REQUEST_MESSAGE_HANDLER
filter called for each amf request message, to give a plugin the chance to handle it.
FILTER_DESERIALIZED_REQUEST
filter called after the request is deserialized. The callee can modify the data and return it.
FILTER_DESERIALIZED_REQUEST_HANDLER
filter called to allow a plugin to override the default amf deserialized request handler.
FILTER_DESERIALIZED_RESPONSE
filter called when the response is ready but not yet serialized. The callee can modify the data and return it.
FILTER_DESERIALIZER
filter called to allow a plugin to override the default amf deserializer.
FILTER_EXCEPTION_HANDLER
filter called to allow a plugin to override the default amf exception handler.
FILTER_SERIALIZED_REQUEST
filter called when the serialized request comes in.
FILTER_SERIALIZED_RESPONSE
filter called when the packet response is ready and serialized.
FILTER_SERIALIZER
filter called to allow a plugin to override the default amf serializer.
FILTER_SERVICE_OBJECT
filter called when the service object is created. Useful for authentication
FLEX_TYPE_ACKNOWLEDGE_MESSAGE
FLEX_TYPE_COMMAND_MESSAGE
FLEX_TYPE_ERROR_MESSAGE
FLEX_TYPE_REMOTING_MESSAGE
FilterManagerTest.php
FilterManagerTest.php in FilterManagerTest.php
g
top
Gateway.php
Gateway.php in Gateway.php
gateway.php
gateway.php in gateway.php
generateErrorResponse
flex expects error messages formatted in a special way, using the ErrorMessage object.
generateRandomId
getAmf3Int
Return the serialisation of the given integer (Amf3).
getInstance
gives access to the singleton
getInstance
getMethodRoles
AuthenticationService::getMethodRoles() in AuthenticationService.php
function the authentication plugin uses to get accepted roles for each function
getOutput
getPizza
PizzaService::getPizza() in PizzaService.php
getResponseHeaders
get the response headers. This might be expanded for stuff like gzip, etc. For now just a content type
getServiceObject
get a service object by its name. Looks for a match in serviceNames2ClassFindInfo, then in the defined service folders.
GatewayTest.php
GatewayTest.php in GatewayTest.php
h
top
$headers
The place to keep the headers data
$headers
$headersLeftToProcess
The number of headers in the packet left to process
$headerUserId
AmfphpAuthentication::$headerUserId in AmfphpAuthentication.php
the user id passed in the credentials header
Handler.php
Handler.php in Handler.php
Header.php
Header.php in Header.php
HttpRequestGatewayFactory.php
HttpRequestGatewayFactory.php in HttpRequestGatewayFactory.php
handleDeserializedRequest
Retrieve the serviceName, methodName and parameters from the PHP object
handleDeserializedRequest
handle the deserialized request, usually by making a series of calls to a service. This should not handle exceptions, as this is done separately
handleDeserializedRequest
handleDeserializedRequest
handleException
AmfphpQuickServiceDebug::handleException() in AmfphpQuickServiceDebug.php
handleException
handleException
generates an object describing the exception.
handleException
handleRequestHeader
looks for a "Credentials" request header. If there is one, uses it to try to authentify the user.
handleRequestMessage
handle the request message instead of letting the Amf Handler do it.
i
top
$instanciationCounter
$instanciationCounter
IDeserializedRequestHandler.php
IDeserializedRequestHandler.php in IDeserializedRequestHandler.php
IDeserializer.php
IDeserializer.php in IDeserializer.php
IExceptionHandler.php
IExceptionHandler.php in IExceptionHandler.php
ISerializer.php
ISerializer.php in ISerializer.php
isSystemBigEndian
looks if the system is Big Endain or not
j
top
JSON_CONTENT_TYPE
the content-type string indicating a JSON content
l
top
loadPlugins
load the plugins
login
AuthenticationService::login() in AuthenticationService.php
test login function
logMessage
AmfphpLogger::logMessage() in AmfphpLogger.php
logout
AuthenticationService::logout() in AuthenticationService.php
test logout function
LOG_FILE_PATH
AmfphpLogger::LOG_FILE_PATH in AmfphpLogger.php
m
top
$messageId
$messages
The place to keep the Message elements
$messagesLeftToProcess
The number of Messages in the packet left to process
$meta
metaInfo
$method
AmfphpCharsetConverter::$method in AmfphpCharsetConverter.php
the reencoding method. One of the METHOD_XXX consts defined above.
$methodName
the name of the method to execute on the service object
$methodParameters
the parameters to pass to the method being called on the service
$mirrorServiceRequestPacket
$mirrorServiceResponsePacket
Message.php
Message.php in Message.php
MirrorService.php
MirrorService.php in MirrorService.php
markExplicitType
AmfphpCustomClassConverter::markExplicitType() in AmfphpCustomClassConverter.php
sets the the explicit type marker on the object and its sub-objects. This is only done if it not already set, as in some cases the service class might want to do this manually.
MAX_STORED_OBJECTS
the maximum amount of objects stored for reference
METHOD_GET_METHOD_ROLES
the name of the method on the service where the method roles are given
METHOD_ICONV
AmfphpCharsetConverter::METHOD_ICONV in AmfphpCharsetConverter.php
uses the iconv library for reencoding
METHOD_LOGIN
AmfphpAuthentication::METHOD_LOGIN in AmfphpAuthentication.php
the name of the login method
METHOD_MBSTRING
AmfphpCharsetConverter::METHOD_MBSTRING in AmfphpCharsetConverter.php
uses the mbstring library for reencoding
METHOD_NONE
AmfphpCharsetConverter::METHOD_NONE in AmfphpCharsetConverter.php
don't do anything
METHOD_RECODE
AmfphpCharsetConverter::METHOD_RECODE in AmfphpCharsetConverter.php
uses the recode library for reencoding
METHOD_UTF8_DECODE
AmfphpCharsetConverter::METHOD_UTF8_DECODE in AmfphpCharsetConverter.php
uses the XML function utf8_decode and encode for reencoding - ISO-8859-1 only
MirrorService
MirrorService in MirrorService.php
MirrorService is a test/example service. Remove it for production use
n
top
$name
Name is the string name of the header key
o
top
$object
$object
$object
AmfphpFlexMessagingTest::$object in AmfphpFlexMessagingTest.php
$object
AmfphpCustomClassConverterTest::$object in AmfphpCustomClassConverterTest.php
$object
AmfphpCharsetConverterTest::$object in AmfphpCharsetConverterTest.php
$object
AmfphpAuthenticationTest::$object in AmfphpAuthenticationTest.php
p
top
$phpCharset
AmfphpCharsetConverter::$phpCharset in AmfphpCharsetConverter.php
the Charset that is used in php default utf-8.
$pluginsConfig
array containing untyped plugin configuration data. Add as needed. The advised format is the name of the plugin as key, and then paramName/paramValue pairs as an array.
$pluginsFolder
path to the folder containing the plugins. defaults to Amfphp_ROOTPATH . "/Plugins/"
Packet.php
Packet.php in Packet.php
PluginManager.php
PluginManager.php in PluginManager.php
PizzaService.php
PizzaService.php in PizzaService.php
PizzaService
PizzaService in PizzaService.php
an example service for the pizza examples
PluginManagerTest.php
PluginManagerTest.php in PluginManagerTest.php
r
top
$rawData
$required
Required is a boolean determining whether the remote system must understand this header in order to operate. If the system does not understand the header then it should not execute the method call.
$responseUri
in the case of a request: operation name, for example /1
readAmf3Array
readAmf3Array
AmfDeserializerWrapper::readAmf3Array() in AmfDeserializerWrapper.php
readAmf3ByteArray
AmfDeserializerWrapper::readAmf3ByteArray() in AmfDeserializerWrapper.php
readAmf3ByteArray
readAmf3Data
AmfDeserializerWrapper::readAmf3Data() in AmfDeserializerWrapper.php
readAmf3Data
readAmf3Date
readAmf3Int
Handle decoding of the variable-length representation which gives seven bits of value per serialized byte by using the high-order bit of each byte as a continuation flag.
readAmf3Object
this probably needs some refactoring. Leave as is for now... A.S.
readAmf3Object
AmfDeserializerWrapper::readAmf3Object() in AmfDeserializerWrapper.php
readAmf3String
readString
readAmf3String
AmfDeserializerWrapper::readAmf3String() in AmfDeserializerWrapper.php
readAmf3XmlString
readArray
AmfDeserializerWrapper::readArray() in AmfDeserializerWrapper.php
readArray
readArray turns an all numeric keyed actionscript array into a php array.
readBuffer
Taken from SabreAmf
readByte
AmfDeserializerWrapper::readByte() in AmfDeserializerWrapper.php
readByte
readByte grabs the next byte from the data stream and returns it.
readCustomClass
readCustomClass reads the amf content associated with a class instance which was registered with Object.registerClass. In order to preserve the class name an additional property is assigned to the object Amfphp_Core_Amf_Constants::FIELD_EXPLICIT_TYPE. This property will be overwritten if it existed within the class already.
readData
readData is the main switch for mapping a type code to an actual implementation for deciphering it.
readDate
AmfDeserializerWrapper::readDate() in AmfDeserializerWrapper.php
readDate
readDate reads a date from the amf Packet and returns the time in ms.
readDouble
AmfDeserializerWrapper::readDouble() in AmfDeserializerWrapper.php
readDouble
readDouble reads the floating point value from the bytes stream and properly orders the bytes depending on the system architecture.
readHeaders
readHeaders converts that header section of the amf Packet into php obects.
readInt
AmfDeserializerWrapper::readInt() in AmfDeserializerWrapper.php
readInt
readInt grabs the next 2 bytes and returns the next two bytes, shifted and combined to produce the resulting integer
readLong
readLong grabs the next 4 bytes shifts and combines them to produce an integer
readLong
AmfDeserializerWrapper::readLong() in AmfDeserializerWrapper.php
readLongUTF
readLongUTF first grabs the next 4 bytes which represent the string length.
readLongUtf
AmfDeserializerWrapper::readLongUtf() in AmfDeserializerWrapper.php
readMessages
readMixedArray
AmfDeserializerWrapper::readMixedArray() in AmfDeserializerWrapper.php
readMixedArray
readMixedArray turns an array with numeric and string indexes into a php array
readMixedObject
readMixedObject reads the name/value properties of the amf Packet and converts numeric looking keys to numeric keys
readObject
AmfDeserializerWrapper::readObject() in AmfDeserializerWrapper.php
readObject
readObject reads the name/value properties of the amf Packet and converts them into their equivilent php representation
readReference
AmfDeserializerWrapper::readReference() in AmfDeserializerWrapper.php
readReference
readReference replaces the old readFlushedSO. It treats where there
readUTF
readUTF first grabs the next 2 bytes which represent the string length.
readUtf
AmfDeserializerWrapper::readUtf() in AmfDeserializerWrapper.php
returnNull
DummyService::returnNull() in DummyService.php
returnOneParam
MirrorService::returnOneParam() in MirrorService.php
returnSum
MirrorService::returnSum() in MirrorService.php
s
top
$s2Headers2MessagesPacket
$sBinary
AmfTestData::$sBinary in AmfTestData.php
$sBoolean
AmfTestData::$sBoolean in AmfTestData.php
$sByte
AmfTestData::$sByte in AmfTestData.php
$sByteArray
Amf3TestData::$sByteArray in Amf3TestData.php
$sDate
AmfTestData::$sDate in AmfTestData.php
$sDate
Amf3TestData::$sDate in Amf3TestData.php
$sDenseArray
Amf3TestData::$sDenseArray in Amf3TestData.php
$sDouble
AmfTestData::$sDouble in AmfTestData.php
$sDouble
Amf3TestData::$sDouble in Amf3TestData.php
$sEcmaArray
AmfTestData::$sEcmaArray in AmfTestData.php
$sEmptyArray
Amf3TestData::$sEmptyArray in Amf3TestData.php
$sEmptyPacket
AmfTestData::$sEmptyPacket in AmfTestData.php
$sEmptyString
Amf3TestData::$sEmptyString in Amf3TestData.php
$serviceFolderPaths
paths to folders containing services(relative or absolute)
$serviceFolderPaths
paths to folders containing services(relative or absolute)
$serviceFolderPaths
TestServicesConfig::$serviceFolderPaths in TestServicesConfig.php
$serviceName
the name of the service.
$serviceNames2ClassFindInfo
$serviceNames2ClassFindInfo
a dictionary of service classes represented in a ClassFindInfo.
$serviceNames2ClassFindInfo
$serviceObj
AmfphpAuthenticationTest::$serviceObj in AmfphpAuthenticationTest.php
$serviceRouter
AmfphpFlexMessagingTest::$serviceRouter in AmfphpFlexMessagingTest.php
$sFalse
Amf3TestData::$sFalse in Amf3TestData.php
$sInt
AmfTestData::$sInt in AmfTestData.php
$sInt1
Amf3TestData::$sInt1 in Amf3TestData.php
$sInt2
Amf3TestData::$sInt2 in Amf3TestData.php
$sLong
AmfTestData::$sLong in AmfTestData.php
$sLongString
AmfTestData::$sLongString in AmfTestData.php
$sLongString
Amf3TestData::$sLongString in Amf3TestData.php
$sLongUtf
AmfTestData::$sLongUtf in AmfTestData.php
$sMixedArray
Amf3TestData::$sMixedArray in Amf3TestData.php
$sNull
AmfTestData::$sNull in AmfTestData.php
$sNull
Amf3TestData::$sNull in Amf3TestData.php
$sNullHeaderPacket
$sNullMessagePacket
$sNumber
AmfTestData::$sNumber in AmfTestData.php
$sObject
AmfTestData::$sObject in AmfTestData.php
$sObject
Amf3TestData::$sObject in Amf3TestData.php
$sObjectEnd
AmfTestData::$sObjectEnd in AmfTestData.php
$sReference
AmfTestData::$sReference in AmfTestData.php
$sStrictArray
AmfTestData::$sStrictArray in AmfTestData.php
$sString
Amf3TestData::$sString in Amf3TestData.php
$sString
AmfTestData::$sString in AmfTestData.php
$sStringHeaderPacket
$sStringMessagePacket
$sStringTwice
Amf3TestData::$sStringTwice in Amf3TestData.php
$storedDefinitions
$storedObjects
$storedStrings
$sTrue
Amf3TestData::$sTrue in Amf3TestData.php
$sTypedObject
AmfTestData::$sTypedObject in AmfTestData.php
$sUndefined
AmfTestData::$sUndefined in AmfTestData.php
$sUndefined
Amf3TestData::$sUndefined in Amf3TestData.php
$sUnsupported
AmfTestData::$sUnsupported in AmfTestData.php
$sUtf
AmfTestData::$sUtf in AmfTestData.php
$sXml
Amf3TestData::$sXml in Amf3TestData.php
$sXml
AmfTestData::$sXml in AmfTestData.php
$sXmlDocument
Amf3TestData::$sXmlDocument in Amf3TestData.php
Serializer.php
Serializer.php in Serializer.php
ServiceCallParameters.php
ServiceCallParameters.php in ServiceCallParameters.php
ServiceRouter.php
ServiceRouter.php in ServiceRouter.php
SerializationTest
SerializationTest in SerializationTest.php
Unit tests for Amfphp_Core_Amf_Serializer note: phpunit dataProvider mechanism doesn't work well, so lots of boiler plate code here. Oh well... A.S.
serialize
serialize
AmfphpQuickServiceDebug::serialize() in AmfphpQuickServiceDebug.php
serialize
AmfphpJson::serialize() in AmfphpJson.php
Encode the PHP object returned from the service call into a JSON string
serialize
serializes the Packet passed in the constructor TODO clean up the mess with the temp buffers. A.S.
serialize
Calling this executes the serialization. The return type is noted as a String, but is a binary stream. echo it to the output buffer
service
The service method runs the gateway application. It deserializes the raw data passed into the constructor as an Amfphp_Core_Amf_Packet, handles the headers, handles the messages as requests to services, and returns the responses from the services It does not however handle output headers, gzip compression, etc. that is the job of the calling script
SESSION_FIELD_ROLES
AmfphpAuthentication::SESSION_FIELD_ROLES in AmfphpAuthentication.php
the field in the session where the roles array is stored
setUp
Sets up the fixture, for example, opens a network connection.
setUp
AmfphpFlexMessagingTest::setUp() in AmfphpFlexMessagingTest.php
Sets up the fixture, for example, opens a network connection.
setUp
Sets up the fixture, for example, opens a network connection.
setUp
Sets up the fixture, for example, opens a network connection.
setUp
AmfphpCustomClassConverterTest::setUp() in AmfphpCustomClassConverterTest.php
Sets up the fixture, for example, opens a network connection.
setUp
AmfphpAuthenticationTest::setUp() in AmfphpAuthenticationTest.php
Sets up the fixture, for example, opens a network connection.
setUp
AmfphpCharsetConverterTest::setUp() in AmfphpCharsetConverterTest.php
Sets up the fixture, for example, opens a network connection.
SerializationTest.php
SerializationTest.php in SerializationTest.php
ServiceRouterTest.php
ServiceRouterTest.php in ServiceRouterTest.php
t
top
$targetUri
inthe case of a request:
$timestamp
$timeToLive
tearDown
AmfphpFlexMessagingTest::tearDown() in AmfphpFlexMessagingTest.php
Tears down the fixture, for example, closes a network connection.
tearDown
AmfphpCustomClassConverterTest::tearDown() in AmfphpCustomClassConverterTest.php
Tears down the fixture, for example, closes a network connection.
tearDown
Tears down the fixture, for example, closes a network connection.
tearDown
AmfphpAuthenticationTest::tearDown() in AmfphpAuthenticationTest.php
Tears down the fixture, for example, closes a network connection.
tearDown
AmfphpCharsetConverterTest::tearDown() in AmfphpCharsetConverterTest.php
Tears down the fixture, for example, closes a network connection.
testAccessWithoutAuthentication
testAddRole
AmfphpAuthenticationTest::testAddRole() in AmfphpAuthenticationTest.php
testApplyFunc
testApplyFunctionToContainedObjects
testBadFolder
testBadRole
AmfphpAuthenticationTest::testBadRole() in AmfphpAuthenticationTest.php
testBasicMethods
Amf3SerializationTest::testBasicMethods() in Amf3SerializationTest.php
testBasicMethods
SerializationTest::testBasicMethods() in SerializationTest.php
testBasicMethods
DeserializationTest::testBasicMethods() in DeserializationTest.php
testBasicMethods
Amf3DeserializationTest::testBasicMethods() in Amf3DeserializationTest.php
testClearSessionInfo
AmfphpAuthenticationTest::testClearSessionInfo() in AmfphpAuthenticationTest.php
testCommandMessage
AmfphpFlexMessagingTest::testCommandMessage() in AmfphpFlexMessagingTest.php
testConfig
TestCustomClass1
TestCustomClass1 in TestCustomClass1.php
dummy class for testing custom class conversion
TestCustomClass2
TestCustomClass2 in TestCustomClass2.php
dummy class for testing custom class conversion
TestCustomClass3
TestCustomClass3 in TestCustomClass3.php
dummy class for testing custom class conversion
testDisabled
testEmptyMessage
testExecuteMirrorServiceCall
testFilter
testfilterDeserializedRequest
testfilterDeserializedResponse
testFindDummyServiceInFolder
testGetAmfRequestHeaderHandlerFilter
testGetAmfRequestMessageHandlerFilter
testIsSystemBigEndian
testLoginAndAccess
AmfphpAuthenticationTest::testLoginAndAccess() in AmfphpAuthenticationTest.php
testLogout
AmfphpAuthenticationTest::testLogout() in AmfphpAuthenticationTest.php
testNoFunctionException
testNormalAccessToUnprotectedMethods
testNoServiceException
testRemotingMessage
AmfphpFlexMessagingTest::testRemotingMessage() in AmfphpFlexMessagingTest.php
testRequestDeserializedFilter
testResponseDeserializedFilter
TestCustomClass1.php
TestCustomClass1.php in TestCustomClass1.php
TestCustomClass2.php
TestCustomClass2.php in TestCustomClass2.php
TestCustomClass3.php
TestCustomClass3.php in TestCustomClass3.php
testGateway.php
testGateway.php in testGateway.php
TestServicesConfig.php
TestServicesConfig.php in TestServicesConfig.php
testSerializingPackets
testSerializingPackets
testService
TestServicesConfig
TestServicesConfig in TestServicesConfig.php
testing requires some services. They are described here.
testSimple
the TestPlugins folder must be scanned and in it found the class DummyPlugin, which contains an instanication counter.
testSimple
AmfphpLoggerTest::testSimple() in AmfphpLoggerTest.php
testWithFiltersBlockAccess
testWithFiltersGrantAccess
u
top
Undefined.php
Undefined.php in Undefined.php
Util.php
Util.php in Util.php
w
top
writeAmf3Array
writeAmf3Array
AmfSerializerWrapper::writeAmf3Array() in AmfSerializerWrapper.php
writeAmf3ArrayCollectionPreamble
Write an ArrayCollection
writeAmf3Bool
AmfSerializerWrapper::writeAmf3Bool() in AmfSerializerWrapper.php
writeAmf3Bool
Write a boolean (Amf3).
writeAmf3ByteArray
writeAmf3ByteArray
AmfSerializerWrapper::writeAmf3ByteArray() in AmfSerializerWrapper.php
writeAmf3ByteArrayMessage
writeAmf3Data
AmfSerializerWrapper::writeAmf3Data() in AmfSerializerWrapper.php
writeAmf3Data
writeAmf3Int
Write an (un-)signed integer (Amf3).
writeAmf3Null
AmfSerializerWrapper::writeAmf3Null() in AmfSerializerWrapper.php
writeAmf3Null
Write NULL (Amf3).
writeAmf3Number
AmfSerializerWrapper::writeAmf3Number() in AmfSerializerWrapper.php
writeAmf3Number
writeAmf3Object
AmfSerializerWrapper::writeAmf3Object() in AmfSerializerWrapper.php
writeAmf3Object
writeAmf3ObjectFromArray
Serialise the array as if it is an object.
writeAmf3String
AmfSerializerWrapper::writeAmf3String() in AmfSerializerWrapper.php
writeAmf3String
Write a string (Amf3). Strings are stored in a cache and in case the same string is written again, a reference to the string is sent instead of the string itself.
writeAmf3Undefined
AmfSerializerWrapper::writeAmf3Undefined() in AmfSerializerWrapper.php
writeAmf3Undefined
Write undefined (Amf3).
writeAmf3Xml
writeAmf3Xml
AmfSerializerWrapper::writeAmf3Xml() in AmfSerializerWrapper.php
writeAnonymousObject
writeObject handles writing a php array with string or mixed keys. It does not write the object code as that is handled by the writeArrayOrObject and this method is shared with the CustomClass writer which doesn't use the object code.
writeArrayOrObject
AmfSerializerWrapper::writeArrayOrObject() in AmfSerializerWrapper.php
writeArrayOrObject
writeArrayOrObject first deterines if the PHP array contains all numeric indexes or a mix of keys. Then it either writes the array code (0x0A) or the object code (0x03) and then the associated data.
writeBoolean
AmfSerializerWrapper::writeBoolean() in AmfSerializerWrapper.php
writeBoolean
writeBoolean writes the boolean code (0x01) and the data to the output stream
writeByte
writeByte writes a singe byte to the output stream 0-255 range
writeByte
AmfSerializerWrapper::writeByte() in AmfSerializerWrapper.php
writeData
writeData checks to see if the type was declared and then either auto negotiates the type or relies on the user defined type to serialize the data into Amf
writeDate
AmfSerializerWrapper::writeDate() in AmfSerializerWrapper.php
writeDate
writeData writes the date code (0x0B) and the date value to the output stream
writeDouble
AmfSerializerWrapper::writeDouble() in AmfSerializerWrapper.php
writeDouble
writeDouble takes a float as the input and writes it to the output stream.
writeInt
writeInt takes an int and writes it as 2 bytes to the output stream 0-65535 range
writeInt
AmfSerializerWrapper::writeInt() in AmfSerializerWrapper.php
writeLong
writeLong takes an int, float or double and converts it to a 4 byte binary string and adds it to the output buffer
writeLong
AmfSerializerWrapper::writeLong() in AmfSerializerWrapper.php
writeLongUtf
AmfSerializerWrapper::writeLongUtf() in AmfSerializerWrapper.php
writeLongUtf
writeLongUTF will write a string longer than 65535 characters.
writeNull
AmfSerializerWrapper::writeNull() in AmfSerializerWrapper.php
writeNull
writeNull writes the null code (0x05) to the output stream
writeNumber
AmfSerializerWrapper::writeNumber() in AmfSerializerWrapper.php
writeNumber
writeNumber writes the number code (0x00) and the numeric data to the output stream All numbers passed through remoting are floats.
writeObjectEnd
writeObjectEnd writes the object end code (0x009) to the output stream
writeObjectEnd
AmfSerializerWrapper::writeObjectEnd() in AmfSerializerWrapper.php
writeObjectFromArray
writeObjectFromArray handles writing a php array with string or mixed keys. It does not write the object code as that is handled by the writeArrayOrObject and this method is shared with the CustomClass writer which doesn't use the object code.
writePlainArray
Write a plain numeric array without anything fancy
writeReference
AmfSerializerWrapper::writeReference() in AmfSerializerWrapper.php
writeReference
writeReferenceIfExists
writeString
AmfSerializerWrapper::writeString() in AmfSerializerWrapper.php
writeString
writeString writes the string code (0x02) and the UTF8 encoded string to the output stream.
writeTypedObject
writeTypedObject takes an instance of a class and writes the variables defined in it to the output stream.
writeTypedObject
AmfSerializerWrapper::writeTypedObject() in AmfSerializerWrapper.php
writeUndefined
writeUndefined writes the Undefined code (0x06) to the output stream
writeUndefined
AmfSerializerWrapper::writeUndefined() in AmfSerializerWrapper.php
writeUtf
writeUTF takes and input string, writes the length as an int and then appends the string to the output buffer
writeUtf
AmfSerializerWrapper::writeUtf() in AmfSerializerWrapper.php
writeXML
writeXML writes the xml code (0x0F) and the XML string to the output stream
writeXML
AmfSerializerWrapper::writeXML() in AmfSerializerWrapper.php
_
top
$_explicitType
$_explicitType
__construct
__construct
constructor
__construct
DummyPlugin::__construct() in DummyPlugin.php
__construct
__construct
Amfphp_Core_Amf_Header is the Constructor function for the Amfphp_Core_Amf_Header data type.
__construct
__construct
TestServicesConfig::__construct() in TestServicesConfig.php
__construct
__construct
The constructor function for a new Amf object.
__construct
__construct
DisabledPlugin::__construct() in DisabledPlugin.php
__construct
__construct
AmfphpCharsetConverter::__construct() in AmfphpCharsetConverter.php
constructor.
__construct
AmfphpCustomClassConverter::__construct() in AmfphpCustomClassConverter.php
constructor.
__construct
AmfphpAuthentication::__construct() in AmfphpAuthentication.php
constructor.
__construct
Amf3TestData::__construct() in Amf3TestData.php
__construct
__construct
AmfphpFlexMessaging::__construct() in AmfphpFlexMessaging.php
constructor.
__construct
AmfphpJson::__construct() in AmfphpJson.php
constructor. Add filters on the HookManager.
__construct
__construct
AmfTestData::__construct() in AmfTestData.php
__construct
AmfphpQuickServiceDebug::__construct() in AmfphpQuickServiceDebug.php
constructor.
__construct
AmfphpLogger::__construct() in AmfphpLogger.php
constructor.
__construct
a b c d e f g h i j l m n o p r s t u w _