Changeset 64 for trunk/admin.php
- Timestamp:
- Jan 1, 2016, 2:05:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin.php
r63 r64 1 1 <?php 2 2 include('Global.php'); 3 4 $Application = new Application(); 5 $Application->Start(); 3 6 4 7 if(array_key_exists('Operation', $_GET)) $Operation = $_GET['Operation']; else $Operation = ''; … … 6 9 { 7 10 case 'Add': 8 $Output = ShowAdd(); 11 $Output = ShowAdd(); 9 12 break; 10 13 case 'Delete': 11 $Output = ShowDelete(); 14 $Output = ShowDelete(); 12 15 break; 13 16 case 'Edit': 14 $Output = ShowEdit(); 17 $Output = ShowEdit(); 15 18 break; 16 19 case 'RebuildCache': 17 $Output = ShowRebuildCache(); 20 $Output = ShowRebuildCache(); 18 21 break; 19 22 default: 20 $Output = ShowNone(); 23 $Output = ShowNone(); 21 24 } 22 25 ShowPage($Output); … … 36 39 } 37 40 $Output = '<h3>Seznam měření</h3>'.Table($Table).MakeLink('?Operation=Add', 'Přidat'); 38 return($Output); 41 return($Output); 39 42 } 40 43 … … 62 65 $Measure = $DbResult->fetch_array(); 63 66 64 RebuildMeasureCache($Measure); 65 echo('Dokončeno<br>'); 67 RebuildMeasureCache($Measure); 68 echo('Dokončeno<br>'); 66 69 }
Note:
See TracChangeset
for help on using the changeset viewer.