Login   Register  
PHP Classes
elePHPant
Icontem

File: view.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  >  Appointment Calendar  >  view.php  >  Download  
File: view.php
Role: Application script
Content type: text/plain
Description: Draws a single view of the Appointment
Class: Appointment Calendar
Manage scheduled appointments
Author: By
Last change:
Date: 2010-03-08 06:16
Size: 3,318 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_View.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) return;

    
// =======================================
    // 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->setPanel ($itmAppointment);

?>
    <style>    @import url("styles.css");    </style>
    <script src="jquery_lite.js"></script>
    <script src="trgrs_Appointments.js"></script>
    <script>
        ENetArch.Appointments.nFolderID = <?= $nFolderID ?>;
        ENetArch.Appointments.nPos = <?= $nPos ?>;
    </script>
<?
    $pnlCalendar
->drawPanel();
?>
    <div ID="ENetArch_Navigation">
    <a href="javascript:void(0);" onClick="ENetArch.Appointments.List ();">List</a> |
    <a href="javascript:void(0);" onClick="ENetArch.Appointments.New ();">New</a> |
    <a href="javascript:void(0);" onClick="ENetArch.Appointments.View ();">View</a> |
    <a href="javascript:void(0);" onClick="ENetArch.Appointments.Edit ();">Edit</a> |
    <a href="javascript:void(0);" onClick="ENetArch.Appointments.Delete ();">Delete</a>
    </div>
<?
    
print ("<table ID=\"" $pnlApt->getPanelID() . "\">\n");
    
$pnlApt->drawHeader();
    
$pnlApt->drawPanel();
    print (
"</table>");
?>
    <script>
        $("ENetArch_Navigation").style.width = $("ENetArch_Calendar").offsetWidth - 6;
        $("ENetArch_Appointments").style.width = $("ENetArch_Calendar").offsetWidth;
    </script>
<?
}
?>