PHP Classes

File: delete.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Todo List   delete.php   Download  
File: delete.php
Role: Example script
Content type: text/plain
Description: Delets a Todo from the Folder
Class: Todo List
Manage a list of tasks of a to do list
Author: By
Last change:
Date: 13 years ago
Size: 1,984 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 (
"Task_Priorities.cls");
Include_Once (
"Task_Types.cls");
Include_Once (
"Calendar_Week.cls");
Include_Once (
"Common_Todos.cls");
Include_Once (
"Todo_Edit.cls");
Include_Once (
dirPath() . "Shared/_app.inc");

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

   
$szIDs = "";
    if (isset (
$_REQUEST ['szIDs']))
       
$szIDs = $_REQUEST ['szIDs'];

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

   
if ($nFolderID == 0) return;
    if (
$szIDs == "") return;

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

   
$clsCommon_Todo = gblLadder()->getClass ("Common_Todo")->ID();

   
// ==========================================
    // Get Todos Folder

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

   
// =======================================
    // Set Todos Folder

   
$fldrTodos = New ENetArch_Common_Todos();
   
$fldrTodos->setState ($fldrTarget);

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

   
$pnlCalendar = new ENetArch_Panels_Common_Calendar_Week();

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

   
$pnlCalendar->setPanelName ("ENetArch.Calendar");
   
$pnlCalendar->getSession ();
   
$fldrTodos->setDate ($pnlCalendar->getDate());

   
$aryIDs = parseString ($szIDs, ",");

    for (
$t=0; $t<count ($aryIDs); $t++)
    {
       
$nPos = $aryIDs [$t];
        if (
$nPos > 0)
        {
           
$itmTodo = $fldrTodos->Item ($nPos, Array (1=>$clsCommon_Todo));
           
$itmTodo->Delete();
        }
    }

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