PHP Classes

File: update.php

Recommend this page to a friend!
  Classes of Michael J. Fuhrman   Appointment Calendar   update.php   Download  
File: update.php
Role: Application script
Content type: text/plain
Description: Updates the Appointment after being edited
Class: Appointment Calendar
Manage scheduled appointments
Author: By
Last change:
Date: 14 years ago
Size: 2,464 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 (
"Time_Length.cls");
Include_Once (
"Time_Start.cls");
Include_Once (
"Calendar_Week.cls");
Include_Once (
"Common_Appointments.cls");
Include_Once (
"Appointment_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 == 0) header ("Location:List.php");

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

   
$clsCommon_Appointment = gblLadder()->getClass ("Common_Appointment")->ID();

   
// ==========================================
    // Get Appointments Folder

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

   
// =======================================
    // Set Appointments Folder

   
$fldrApts = New ENetArch_Common_Appointments();
   
$fldrApts->setState ($fldrTarget);

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

   
$pnlApt = new ENetArch_Panels_Common_Appointment();

   
$pnlTime_Start = new ENetArch_Panels_Common_Time_Start();
   
$pnlTime_Lengths = new ENetArch_Panels_Common_Time_Lengths();

   
$pnlCalendar = new ENetArch_Panels_Common_Calendar_Week();

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

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

   
$itmAppointment = $fldrApts->Item ($nPos, Array (1=>$clsCommon_Appointment));

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

   
$pnlApt->setPanelName ("ENetArch.Appointments");
   
$pnlApt->setPanelTimes ($pnlTime_Start);
   
$pnlApt->setPanelLengths ($pnlTime_Lengths);
   
$pnlApt->getPOST();

   
$pnlApt->updateObject ($itmAppointment);
   
$itmAppointment->setField ("dTarget", $pnlCalendar->getDate());
   
$itmAppointment->Store();

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

    return;
}
?>