For those of you who use wurfl, I just wanted to check if my logic was correct. I have a page that has both a mobile and desktop version.
If I want phones like iPhones, etc to be redirected to the smaller mobile version while iPads, PlayBooks and desktops get the full size version, is this the correct logic on the full size page:
if ($requestingDevice->getCapability("is_wireless_device") == "true" && $requestingDevice->getCapability("is_tablet") == "false") { //redirect to mobile version }