Changeset 463 for trunk/is/index.php


Ignore:
Timestamp:
Nov 28, 2012, 9:18:35 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Nástřel definice třídy aplikačních modulů.
  • Upraveno: K ikonám akcí ve správě dat přidány textové názvy.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/is/index.php

    r457 r463  
    6464      $Form->OnSubmit = '?a=edit&o=save';
    6565      $Output .= $Form->ShowEditForm();
    66       $Output .= '<br/><div style="text-align: center;">';
    67       $Output .= '<a href="?a=view"><img alt="Prohlížet" title="Prohlížet" src="'.
    68       $this->System->Link('/images/view.png').'"/></a>';
    69       $Output .= '<a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
    70         $this->System->Link('/images/list.png').'"/></a>';
    71       $Output .= '<a href="?a=delete" ><img alt="Odstranit" title="Odstranit" src="'.
    72         $this->System->Link('/images/delete.png').'" onclick="return confirmAction(\'Opravdu smazat položku?\');"/></a>';
    73       $Output .= '</div>';
     66      $Output .= '<ul class="ActionMenu">';
     67      $Output .= '<li><a href="?a=view"><img alt="Prohlížet" title="Prohlížet" src="'.
     68      $this->System->Link('/images/view.png').'"/>Prohlížet</a></li>';
     69      $Output .= '<li><a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
     70        $this->System->Link('/images/list.png').'"/>Seznam</a></li>';
     71      $Output .= '<li><a href="?a=delete" onclick="return confirmAction(\'Opravdu smazat položku?\');"><img alt="Odstranit" title="Odstranit" src="'.
     72        $this->System->Link('/images/delete.png').'"/>Odstranit</a></li>';
     73      $Output .= '</ul>';
    7474    }
    7575    return($Output);
     
    110110      $Form->OnSubmit = '?a=add&amp;o=save';
    111111      $Output .= $Form->ShowEditForm();
    112       $Output .= '<br/><div style="text-align: center;">';
    113       $Output .= '<a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
    114         $this->System->Link('/images/list.png').'"/></a>';
    115       $Output .= '</div>';
     112      $Output .= '<ul class="ActionMenu">';
     113      $Output .= '<li><a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
     114        $this->System->Link('/images/list.png').'"/>Seznam</a></li>';
     115      $Output .= '</ul>';
    116116    }
    117117    return($Output);
     
    126126    $Form->OnSubmit = '?a=view';
    127127    $Output = $Form->ShowViewForm();
    128     $Output .= '<br/><div style="text-align: center;">';
    129     $Output .= '<a href="?a=edit"><img alt="Upravit" title="Upravit" src="'.
    130       $this->System->Link('/images/edit.png').'"/></a>';
    131     $Output .= '<a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
    132       $this->System->Link('/images/list.png').'"/></a>';
    133     $Output .= '<a href="?a=delete"><img alt="Odstranit" title="Odstranit" src="'.
    134       $this->System->Link('/images/delete.png').'" onclick="return confirmAction(\'Opravdu smazat položku?\');"/></a>';
    135     $Output .= '</div><br/>';
     128    $Output .= '<ul class="ActionMenu">';
     129    $Output .= '<li><a href="?a=edit"><img alt="Upravit" title="Upravit" src="'.
     130      $this->System->Link('/images/edit.png').'"/>Upravit</a></li>';
     131    $Output .= '<li><a href="?a=list"><img alt="Seznam" title="Seznam" src="'.
     132      $this->System->Link('/images/list.png').'"/>Seznam</a></li>';
     133    $Output .= '<li><a href="?a=delete" onclick="return confirmAction(\'Opravdu smazat položku?\');"><img alt="Odstranit" title="Odstranit" src="'.
     134      $this->System->Link('/images/delete.png').'" />Odstranit</a></li>';
     135    $Output .= '<li><a href="?a=add"><img alt="Přidat" title="Přidat" src="'.
     136      $this->System->Link('/images/add.png').'"/>Přidat</a></li>';
     137    $Output .= '</ul><br/>';
    136138   
    137139    // Show ManyToOne relations
     
    211213    $Output .= '</table>';
    212214    $Output .= $PageList['Output'];
    213     $Output .= '<br/><div style="text-align: center;">';
    214     $Output .= '<a href="?a=add"><img alt="Přidat" title="Přidat" src="'.
    215         $this->System->Link('/images/add.png').'"/></a>';
    216     $Output .= '</div>';
     215    $Output .= '<ul class="ActionMenu">';
     216    $Output .= '<li><a href="?a=add&amp;t='.$Table.'"><img alt="Přidat" title="Přidat" src="'.
     217        $this->System->Link('/images/add.png').'"/>Přidat</a></li>';
     218    $Output .= '<li><a href="?a=list&amp;t='.$Table.'"><img alt="Seznam" title="Seznam" src="'.
     219        $this->System->Link('/images/list.png').'"/>Seznam</a></li>';
     220    $Output .= '</ul></div>';
    217221    return($Output);
    218222  }
Note: See TracChangeset for help on using the changeset viewer.