PHP Classes

File: Security/Admin/Login/trgrs_Login.js.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Security   Security/Admin/Login/trgrs_Login.js.php   Download  
File: Security/Admin/Login/trgrs_Login.js.php
Role: Example script
Content type: text/plain
Description: Javascript functions for the Login activities
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 13 years ago
Size: 1,727 bytes
 

Contents

Class file image Download
<?
/* =======================================
    Copyright 1998 - 2010 - E Net Arch
    This program is distributed under the terms of the GNU
    General Public License (or the Lesser GPL).
    www.ENetArch.net
    ======================================= */

   
$szNameSpace = "ENetArch_Security_Content";
    if (isset (
$_REQUEST["szNameSpace"]))
       
$szNameSpace = $_REQUEST["szNameSpace"];

   
$aryNameSpace = explode (".", $szNameSpace);
   
$szParent = implode (".", array_slice ($aryNameSpace, 0, count ($aryNameSpace) -1));
   
$szApp = implode (".", array_slice ($aryNameSpace, 0, count ($aryNameSpace) -2));
?>

<?= $szNameSpace?> =
{
    cmdActivate : function ()
    {
        szParams =
            "nID=" + <?= $szParent ?>.nCurrentID + "&" +
            "szNameSpace=" + <?= $szParent ?>.szNameSpace + "&" +
            "bActive=1&";

        <?= $szApp ?>.getPanel ("login/activate.php", <?= $szParent ?>.divTarget, szParams);
        <?= $szApp ?>.getPanel ("login/view.php", <?= $szParent ?>.divTarget, szParams);
    },

    cmdDeActivate : function ()
    {
        szParams =
            "nID=" + <?= $szParent ?>.nCurrentID + "&" +
            "szNameSpace=" + <?= $szParent ?>.szNameSpace + "&" +
            "bActive=0&";

        <?= $szApp ?>.getPanel ("login/activate.php", <?= $szParent ?>.divTarget, szParams);
        <?= $szApp ?>.getPanel ("login/view.php", <?= $szParent ?>.divTarget, szParams);
    },

    ckboxChanged : function (me)
    {
        szParams =
            "nID=" + <?= $szParent ?>.nCurrentID + "&" +
            "szNameSpace=" + <?= $szParent ?>.szNameSpace + "&" +
            "bActive=" + ( (me.checked) ? 1 : 0 ) + "&";

        <?= $szApp ?>.getPanel ("login/activate.php", <?= $szParent ?>.divTarget, szParams);
        <?= $szApp ?>.getPanel ("login/view.php", <?= $szParent ?>.divTarget, szParams);
    },
};