Changeset 8 for types/Enumeration.php


Ignore:
Timestamp:
Sep 29, 2008, 2:35:42 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Částečná podpora pro přihlašování uživatelů.
  • Přepracováno: Funkce pro generování formulářů podle dynamické definice namísto přímého generování podle databáze. Všechny formuláře nemají odpovídající strukturu v databázi.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • types/Enumeration.php

    r5 r8  
    11<?php
    22
    3 function TypeEnumerationViewHtml($Type, $Parameter, $Table, $Id)
     3function TypeEnumerationViewHtml($Type, $Item)
    44{
    5   $Output = $Type['Parameters'][$Parameter];
     5  $Output = $Type['Parameters'][$Item['Value']];
    66  return($Output);
    77}
    88
    9 function TypeEnumerationEditHtml($Type, $Parameter, $Table, $Id)
     9function TypeEnumerationEditHtml($Type, $Item)
    1010{
    11   $Output = '<select name="%name%">';
     11  $Output = '<select name="'.$Item['Name'].'">';
    1212  foreach($Type['Parameters'] as $Index => $StateName)
    1313  {
Note: See TracChangeset for help on using the changeset viewer.