Enabled Property



 
The Enabled property indicates if the Payment Module of SiteKiosk has been enabled.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Enabled
Possible Values
    Boolean value that indicates if the Payment Module is active.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if the Payment Module has been enabled and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Enabled);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top