Difference between revisions of "PHONEGAPDEVICE()"

From Lianjapedia
Jump to: navigation, search
Line 28: Line 28:
 
[[Category:Lianja VFP Extensions]]
 
[[Category:Lianja VFP Extensions]]
 
[[Category:VFP Function Extensions]]
 
[[Category:VFP Function Extensions]]
[[Category:Mobile Apps]]
 
 
[[Category:Lianja v2.0]]
 
[[Category:Lianja v2.0]]
 
[[Category:PhoneGap Apps]]
 
[[Category:PhoneGap Apps]]

Revision as of 09:53, 3 April 2017

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