PHONEGAPDEVICE()

From Lianjapedia
Revision as of 09:53, 3 April 2017 by Yvonne.milne (Talk | contribs)

Jump to: navigation, search

Purpose

Function which can be used in .rsp pages and/or server-side procedures to determine the device if the current client is a mobile device

Syntax

PHONEGAPDEVICE()

See Also

ISPHONEGAP(), ISSERVER(), PHONEGAPVERSION(), PHONEGAPPLATFORM()

Description

The PHONEGAPDEVICE() function returns the device - 'phone' or 'tablet' - if the current client is a mobile device, otherwise an empty string.

Example

do case
case phoneGapDevice() = 'phone'
   // called from phone mobile client
case phoneGapDevice() = 'tablet'
   // called from tablet mobile client
otherwise
   // not called from mobile client
endcase