Login   Register  
PHP Classes
elePHPant
Icontem

File: Security/Admin/Help/trgrs_HButtonBar.js.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Michael J. Fuhrman  >  Security  >  Security/Admin/Help/trgrs_HButtonBar.js.php  >  Download  
File: Security/Admin/Help/trgrs_HButtonBar.js.php
Role: Example script
Content type: text/plain
Description: Javascript functions for the H Button Bar Panel
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 2010-08-27 16:09
Size: 1,686 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_Panel_Content";
    if (isset (
$_REQUEST["szNameSpace"]))
        
$szNameSpace $_REQUEST["szNameSpace"];

    
$aryNameSpace explode ("."$szNameSpace);
    
$szParent implode ("."array_slice ($aryNameSpace0count ($aryNameSpace) -1));
    
$szApp implode ("."array_slice ($aryNameSpace0count ($aryNameSpace) -2));

?>

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

        <?= $szApp ?>.getPanel ("Notes/new.php", <?= $szParent ?>.divTarget, szParams);
    },

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

        <?= $szApp ?>.getPanel ("Note/new.php", <?= $szParent ?>.divTarget, szParams);
    },

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

        <?= $szApp ?>.getPanel ("Help/deletebummer.php", <?= $szParent ?>.divTarget, szParams);
        <?= $szApp ?>.selected (<?= $szParent ?>.nCurrentID);
    },

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

        <?= $szApp ?>.getPanel ("_parent.php", <?= $szParent ?>.divTarget, szParams);
    },
}