Difference between revisions of "PHONEGAPPLATFORM()"

From Lianjapedia
Jump to: navigation, search
Line 32: Line 32:
 
[[Category:Mobile Apps]]
 
[[Category:Mobile Apps]]
 
[[Category:Lianja v2.0]]
 
[[Category:Lianja v2.0]]
 +
[[Category:PhoneGap Apps]]

Revision as of 07:14, 3 April 2017

Purpose

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

Syntax

PHONEGAPPLATFORM()

See Also

ISPHONEGAP(), ISSERVER(), PHONEGAPDEVICE(), PHONEGAPVERSION()

Description

The PHONEGAPPLATFORM() function returns the platform - 'android', 'ios' or 'winphone' - if the current client is a mobile device, otherwise an empty string.

Example

do case
case phoneGapPlatform() = 'android'
   // called from Android mobile client
case phoneGapPlatform() = 'ios'
   // called from iOS mobile client
case phoneGapPlatform() = 'winphone'
   // called from Windows Phone mobile client
otherwise
   // not called from mobile client
endcase