Login   Register  
PHP Classes
elePHPant
Icontem

File: delete.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  >  Contact Types  >  delete.php  >  Download  
File: delete.php
Role: Example script
Content type: text/plain
Description: Deletes a Contact Type from the folder
Class: Contact Types
Manage a list of types of people contacts
Author: By
Last change:
Date: 2010-07-09 15:33
Size: 1,708 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

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

    
if (isset ($_GET ['nPos']))
        for (
$t=0$t<count ($_GET  ['nPos']); $t++)
        {
            
$nPos $_GET ['nPos'][$t];
            if (
$nPos != 0)
            {
                
$itmContactTypes $fldrContactTypes->Item ($nPos, Array (1=>$clsCommon_ContactTypes));
                
$itmContactTypes->Delete();
            }
        }

    
print_r ($_GET ['nPos']);

    
// header ("Location:List.php?nFolderID=" . $nFolderID . "&");
}
?>