PHP Classes

File: Security/Admin/Policies/add.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Security   Security/Admin/Policies/add.php   Download  
File: Security/Admin/Policies/add.php
Role: Example script
Content type: text/plain
Description: Adds a Policy Folder to the Policies
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 13 years ago
Size: 1,823 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() . "Shared/Classes/Ladder/Ladder_Ladder.cls");
    include_once (
dirPath() . "Marketing/Security/Classes/Security_Security.cls");
    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);

   
// ==========================================
    // Create New Instance

   
$fldrPolicies = new ENetArch_Site_Policies ();
   
$fldrPolicies->setState ($objFolder);

   
$newFolder = $fldrPolicies->Create_Policies ("New Policy", "New Policy Folder");

    if (
$newFolder == null) return;

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

   
$pnlFolder = new ENetArch_Panels_Ladder_Folder();
   
$pnlFolder->setPanelName ($szNameSpace . ".FolderDetail");
   
$pnlFolder->getPOST();
   
$pnlFolder->updateObject($newFolder);

   
$newFolder->Store();

}
?>