A short tutorial on how to make effective use of the parameter set object and how to hook it into the generated Data Access Objects (DAOs) built from the class generator. More »
Posted in Tutorials on 01 May 2011 @ 18:12
Provides access to records in wurfl.capabilities Creating a new record: $oWurflCapability = new wurflCapability(); $oWurflCapability->setCapabilityID($inCapabilityID); $oWurflCapability->setCapabilityGroupID($inCapabilityGroupID); $oWurflCapability->... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in wurfl.capabilityGroups Creating a new record: $oWurflCapabilityGroup = new wurflCapabilityGroup(); $oWurflCapabilityGroup->setCapabilityGroupID($inCapabilityGroupID); $oWurflCapabilityGroup->setDescription($inDescription... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in wurfl.devices Creating a new record: $oWurflDevice = new wurflDevice(); $oWurflDevice->setDeviceID($inDeviceID); $oWurflDevice->setManufacturerID($inManufacturerID); $oWurflDevice->setModelName($inModelName); $oWurflDevi... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in wurfl.manufacturers Creating a new record: $oWurflManufacturer = new wurflManufacturer(); $oWurflManufacturer->setManufacturerID($inManufacturerID); $oWurflManufacturer->setDescription($inDescription); $oWurflManufacture... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in wurfl.deviceCache Creating a new record: $oWurflDeviceCache = new wurflDeviceCache(); $oWurflDeviceCache->setDeviceID($inDeviceID); $oWurflDeviceCache->setCreateDate($inCreateDate); $oWurflDeviceCache->setUpdateDate($inU... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Handles mapping capabilities to a device More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in wurfl.deviceCapabilities Creating a new record: $oWurflDeviceCapability = new wurflDeviceCapability(); $oWurflDeviceCapability->setDeviceID($inDeviceID); $oWurflDeviceCapability->setCapabilityID($inCapabilityID); $oWurfl... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Provides access to records in logging.logQueue Creating a new record: $oSystemLogQueue = new systemLogQueue(); $oSystemLogQueue->setLogFile($inLogFile); $oSystemLogQueue->setLogMessage($inLogMessage); $oSystemLogQueue->save(); Accessing a record by p... More »
Posted in System on 19 Nov 2009 @ 20:31
systemDaoInterface provides standard method for all data objects More »
Posted in System on 19 Nov 2009 @ 20:31