PHP Classes

File: add.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Contact Types   add.php   Download  
File: add.php
Role: Example script
Content type: text/plain
Description: Adds a Contact Type to the folder
Class: Contact Types
Manage a list of types of people contacts
Author: By
Last change: Added Copy Right
Date: 13 years ago
Size: 1,827 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).
    ======================================= */

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

Include_Once (
dirPath() . "Shared/Classes/Ladder/Ladder_Ladder.cls");
Include_Once (
"Common_Panel.cls");
Include_Once (
"Common_ContactTypes.cls");
Include_Once (
"Panel_ContactType.cls");
Include_Once (
dirPath() . "Shared/_app.inc");

Function
php_Main ()
{
   
$nFolderID = 0;
    if (isset (
$_REQUEST ['nFolderID']))
       
$nFolderID = $_REQUEST ['nFolderID'];

   
// ==========================================
    // Validations

   
if ($nFolderID == 0) return;

   
// =======================================
    // Classes

   
$clsCommon_ContactTypes = gblLadder()->getClass ("Common_ContactType")->ID();

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

   
$fldrTarget = gblLadder()->getItem ($nFolderID);

   
// =======================================
    // Set ContactTypes Folder

   
$fldrContactTypes = New ENetArch_Common_ContactTypes();
   
$fldrContactTypes->setState ($fldrTarget);

   
// ==========================================
    // Panels

   
$pnlContactTypes = new ENetArch_Panels_Common_ContactTypes();

   
// ==========================================
    // Get Item

   
$itmContactTypes = $fldrContactTypes->Create_Item ("ContactTypes", "Test ContactTypes", $clsCommon_ContactTypes);

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

   
$pnlContactTypes->setPanelName ("ENetArch.ContactTypes");
   
$pnlContactTypes->getPOST();

   
$pnlContactTypes->updateObject ($itmContactTypes);
   
$itmContactTypes->Store();

   
header ("Location:list.php?nFolderID=" . $nFolderID . "&");

    return;
}
?>