The manager is used to instantiate an instance of the wurflDevice class. It can be created in a number of ways: By DeviceID By UserAgent By WURFL ID Both getInstanceByUserAgent() and getInstanceByWurflID call getInstance() internally and load by de... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
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
Creates a WURFL XML file from a wurflResultSet, optionally creating a patch file 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
Parses a WURFL XML file; either the whole file or a patch file. So long as the file validates as XML and conforms to the WURFL specification it can be parsed by this class into the necessary objects and committed to the database. As this is an inten... More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Holds the search results from a search for devices More »
Posted in Wurfl on 19 Nov 2009 @ 20:39
Searches for handsets based on supplied criteria returning a wurflResultSet object. Handsets can be searched via user agent or wurflID and either specific matches or only root level devices returned. Example: $oSearch = new wurflSearch(); $oSearch->s... 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