Login   Register  
PHP Classes
elePHPant
Icontem

File: edit.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  >  edit.php  >  Download  
File: edit.php
Role: Example script
Content type: text/plain
Description: Edits 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:08
Size: 2,958 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 == 0) return;

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

?>
    <style>    @import url("styles.css");    </style>
    <script src="jquery_lite.js"></script>
    <script src="trgrs_TaskTypes.js"></script>
    <script>
        ENetArch.TaskTypes.nFolderID = <?= $nFolderID ?>;
        ENetArch.TaskTypes.nPos = <?= $nPos ?>;
    </script>
<?
?>
    <div ID="ENetArch_Navigation">
    <a href="javascript:void(0);" onClick="ENetArch.TaskTypes.List ();">List</a> |
    <a href="javascript:void(0);" onClick="ENetArch.TaskTypes.New ();">New</a> |
    <a href="javascript:void(0);" onClick="ENetArch.TaskTypes.View ();">View</a> |
    <a href="javascript:void(0);" onClick="ENetArch.TaskTypes.Edit ();">Edit</a> |
    <a href="javascript:void(0);" onClick="ENetArch.TaskTypes.Delete ();">Delete</a>
    </div>
<?
    
print ("<form name=\"ENetArch_TaskTypes_Form\" onSubmit =\"ENetArch.TaskTypes.Update(this)\" >");
    print (
"<table ID=\"" $pnlTaskType->getPanelID() . "\">\n");
    
$pnlTaskType->drawHeader();
    
$pnlTaskType->drawPanel();
    print (
"</table>\n");
    print (
'<input type="submit" name="submit" value="submit">');
    print (
"</form>");
?>
    <script>ENetArch_Calendar
        $("ENetArch_Navigation").style.width = $("ENetArch_TaskTypes").offsetWidth - 6;
        $("ENetArch_Calendar").style.width = $("ENetArch_TaskTypes").offsetWidth;
    </script>
<?
}
?>