Admin Object
The Admin object represents a SiteCafe admin.
Members Table
The following table lists the members provided by the Admin object.
| |
| Properties |
Description |
| Index |
Index number. |
| Level |
Admin's arbitrary level. |
| Name |
Name of the admin. |
| Password |
Admin's password. |
| |
| Method |
Description |
| CheckPassword |
Checks whether a given password is valid. |
| |
Remarks
Examples
The following example displays the name of the first available admin.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
admin = SiteCafe.Server.Admins.GetAdminByIndex(1);
alert(admin.Name);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top