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/PointerOneToMany.php

    r5 r8  
    11<?php
    22
    3 function TypePointerOneToManyViewHtml($Type, $Parameter, $Table, $Id)
     3function TypePointerOneToManyViewHtml($Type, $Item)
    44{
    5   $Output = '<a href="?Action=ShowList&amp;TableId='.$Type['TypeDefinition'].'&amp;ParentTable='.$Table.'&amp;ParentColumn='.$Id.'">Seznam</a>';
     5  $Output = '<a href="?Action=ShowList&amp;TableId='.$Type['TypeDefinition'].'&amp;ParentTable='.$Item['SourceTable'].'&amp;ParentColumn='.$Item['SourceItemId'].'">Seznam</a>';
    66  return($Output);
    77}
    88
    9 function TypePointerOneToManyEditHtml($Type, $Parameter, $Table, $Id)
     9function TypePointerOneToManyEditHtml($Type, $Item)
    1010{
    11   $Output = '<a href="?Action=ShowList&amp;TableId='.$Type['TypeDefinition'].'&amp;ParentTable='.$Table.'&amp;ParentColumn='.$Id.'">Seznam</a>';
     11  $Output = '<a href="?Action=ShowList&amp;TableId='.$Type['TypeDefinition'].'&amp;ParentTable='.$Item['SourceTable'].'&amp;ParentColumn='.$Item['SourceItemId'].'">Seznam</a>';
    1212  return($Output);
    1313}
Note: See TracChangeset for help on using the changeset viewer.