Login   Register  
PHP Classes
elePHPant
Icontem

File: Security/Admin/_properties.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/_properties.php  >  Download  
File: Security/Admin/_properties.php
Role: Example script
Content type: text/plain
Description: displays the properties of an item
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 2010-08-27 08:02
Size: 978 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
    ======================================= */

    
function dirPath() {return ("../../"); }

    include_once (
dirPath() . "Marketing/Notes/Panel_Panel.cls");
    include_once (
dirPath() . "Marketing/Notes/Panel_Ladder_Properties.cls");
    include_once (
dirPath() . "Shared/_app.inc");

Function 
php_Main ()
{
    
$nID 1;
    if (isset (
$_REQUEST["nID"]))
        
$nID $_REQUEST["nID"];

    
$szNameSpace "ENetArch_Panel_Folder_DetailView";
    if (isset (
$_REQUEST["szNameSpace"]))
        
$szNameSpace $_REQUEST["szNameSpace"];

    
// ==========================================
    // Get Folder

    
$objFolder gblLadder()->getItem ($nID);

    
$pnlProperties = new ENetArch_Panels_Ladder_Properties();

    
$pnlProperties->setPanel ($objFolder);
    
$pnlProperties->drawPanel();
}
?>