Login   Register  
PHP Classes
elePHPant
Icontem

File: Security/Admin/Policies/edit.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/Policies/edit.php  >  Download  
File: Security/Admin/Policies/edit.php
Role: Example script
Content type: text/plain
Description: Edits a Policy Folder in the Policies
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 2010-08-27 16:39
Size: 3,201 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/Security/rootFolder.php");
    include_once (
dirPath() . "Marketing/Security/Panels/Panel_Panel.cls");
    include_once (
dirPath() . "Marketing/Security/Panels/Panel_H_ButtonBar.cls");
    include_once (
dirPath() . "Marketing/Security/Panels/Panel_Ladder_PathList.cls");
    include_once (
dirPath() . "Marketing/Security/Panels/Panel_Ladder_Folder.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"];

    
// ==========================================
    // View

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

    
// ==========================================
    // View

    
$pnlPath = new ENetArch_Panels_Ladder_PathList();
    
$pnlPath->setPanelName ($szNameSpace ".PathList");
    
$pnlPath->setPanel ($objFolder$fldrRoot);
    
$pnlPath->drawPanel();

    
$pnlButtons = new ENetArch_Panels_H_ButtonBar();
    
$pnlButtons->setPanelName ($szNameSpace .".HButtonBar");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/folder_closed.gif""cmdAdd_PolicyFolder");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/file.gif""cmdAdd_Policy");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/empty.gif""");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/folder_up.gif""cmdParentFolder");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/empty.gif""");
    
$pnlButtons->addButton (pagePath() .  "Images/Ladder/delete.gif""cmdDelete");
    
$pnlButtons->drawPanel();

    
$pnlFolder = new ENetArch_Panels_Ladder_Folder();
    
$pnlFolder->setPanelName ($szNameSpace ".FolderDetail");
    
$pnlFolder->setPanel ($objFolder);

    print (
"<form ID=\"" $szNameSpace "_Form\" " .
        
"onSubmit=\"" $szNameSpace ".cmdUpdate(this); return false;\">\n");
    
$pnlFolder->drawPanel_Edit();
    print (
"<input type=\"submit\" name=\"btnSubmit\" value=\"Submit\">\n");
    print (
"</form>");

    
// ==========================================
    // Import CSS
?>
<style type="text/css">
@import url("<?= pagePath () ?>Marketing/Security/Styles/HButtonBar.css.php?szNameSpace=<?= $pnlButtons->getPanelID() ?>");
</style>
<?
    
// ==========================================
    // Import CSS
?>
<script src="<?= pagePath () ?>Marketing/Security/Admin/Policies/trgrs_PathList.js.php?szNameSpace=<?= $pnlPath->getPanelName() ?>&"></script>
<script src="<?= pagePath () ?>Marketing/Security/Admin/Policies/trgrs_HButtonBar.js.php?szNameSpace=<?= $pnlButtons->getPanelName() ?>&"></script>
<script src="<?= pagePath () ?>Marketing/Security/Admin/Policies/trgrs_FormData.js.php?szNameSpace=<?= $szNameSpace ?>&"></script>
<script><?= $szNameSpace ?>.nCurrentID = <?= $nID ?>;</script>
<?
}
?>