Login   Register  
PHP Classes
elePHPant
Icontem

File: Security/Admin/User/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/User/edit.php  >  Download  
File: Security/Admin/User/edit.php
Role: Example script
Content type: text/plain
Description: Edits a user in the Users Folder
Class: Security
Manage user accounts and access controls
Author: By
Last change:
Date: 2010-08-27 21:32
Size: 910 bytes
 

Contents

Class file image Download
<?
    
function dirPath() { return ("../../../"); }
    function 
pagePath() { return ($_SESSION['pagePath']); }

    include_once (
dirPath() . "Shared/Panels/Common/Name/edit.inc");
    include_once (
dirPath() . "Shared/Panels/Common/Address/edit.inc");
    include_once (
dirPath() . "Shared/Panels/Common/Contacts/edit.inc");
    include_once (
dirPath() . "Shared/_app.inc");

Function 
php_Main ()
{
    global 
$gblLadder;

    
$nID 0;
    
$bStatus "";
    
$aryTargetIDs = Array();

    if (isset (
$_GET ['nID']))
        
$nID $_GET ["nID"];

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

?>

<html>
<head>
<title>Ladder View</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<? ENetArch.Panels.Common.Name.edit (); ?>
<? ENetArch
.Panels.Common.Address.edit (); ?>
<? ENetArch
.Panels.Common.Contacts.edit (); ?>
</body>
</html>
}
?>