PHP Classes

File: Security/Admin/_properties.php

Recommend this page to a friend!
  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: 13 years ago
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();
}
?>