Changeset 571 for trunk/Modules/User/Profile.php
- Timestamp:
- Aug 26, 2013, 9:49:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/Profile.php
r569 r571 46 46 array('Name' => 'ClientVersion', 'Title' => 'Verze klienta'), 47 47 array('Name' => 'UsedCount', 'Title' => 'Prohlédnutí výstupu'), 48 array('Name' => '', 'Title' => 'Akce'), 48 49 ); 49 50 $Order = GetOrderTableHeader($TableColumns, 'TimeCreate', 1); … … 54 55 while($Export = $DbResult->fetch_assoc()) 55 56 { 57 $Action = '<a href="'.$this->System->Link('/export/?Action=View&ExportId='.$Export['Id'].'&Tab=0').'">Zobrazit</a> '. 58 '<a href="'.$this->System->Link('/export/?Action=View&ExportId='.$Export['Id'].'&Tab=7').'">Exportovat</a>'; 59 if($Export['User'] == $this->System->User->Id) $Action .= ' <a href="?Action=Delete&ExportId='.$Export['Id'].'" onclick="return confirmAction(\'Opravdu smazat položku?\');">Smazat</a>'; 56 60 $Output .= '<tr><td>'.HumanDate($Export['TimeCreate']).'</td>'. 57 61 '<td>'.$Export['Title'].'</td>'. 58 62 '<td>'.$Export['OutputType'].'</td>'. 59 63 '<td>'.$Export['ClientVersion'].'</td>'. 60 '<td>'.$Export['UsedCount'].'</td>'; 64 '<td>'.$Export['UsedCount'].'</td>'. 65 '<td>'.$Action.'</td></tr>'; 61 66 } 62 67 $Output .= '</table>'.
Note:
See TracChangeset
for help on using the changeset viewer.