Login   Register  
PHP Classes
elePHPant
Icontem

File: update.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  >  Task Types  >  update.php  >  Download  
File: update.php
Role: Example script
Content type: text/plain
Description: Updates a task type
Class: Task Types
Manage a list of types of tasks of a to do list
Author: By
Last change:
Date: 2010-06-18 07:13
Size: 1,876 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_TaskTypes.cls");
Include_Once (
"TaskType_Edit.cls");
Include_Once (
dirPath() . "Shared/_app.inc");

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

    
$nPos 0;
    if (isset (
$_REQUEST ['nPos']))
        
$nPos $_REQUEST ['nPos'];

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

    
if ($nFolderID == 0) return;
    if (
$nPos == 0header ("Location:List.php");

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

    
$clsCommon_TaskType gblLadder()->getClass ("Common_TaskType")->ID();

    
// ==========================================
    // Get TaskTypes Folder

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

    
// =======================================
    // Set TaskTypes Folder

    
$fldrTaskTypes = New ENetArch_Common_TaskTypes();
    
$fldrTaskTypes->setState ($fldrTarget);

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

    
$pnlTaskType = new ENetArch_Panels_Common_TaskType();

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

    
$itmTaskType $fldrTaskTypes->Item ($nPos, Array (1=>$clsCommon_TaskType));

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

    
$pnlTaskType->setPanelName ("ENetArch.TaskTypes");
    
$pnlTaskType->getPOST();

    
$pnlTaskType->updateObject ($itmTaskType);
    
$itmTaskType->Store();

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

    return;
}
?>