Ignore:
Timestamp:
Aug 26, 2013, 9:49:06 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: Configurable relative path to data source directory.
  • Added: Link to show directly user export from profile page.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/User/Profile.php

    r569 r571  
    4646                                array('Name' => 'ClientVersion', 'Title' => 'Verze klienta'),
    4747                                array('Name' => 'UsedCount', 'Title' => 'Prohlédnutí výstupu'),
     48                                array('Name' => '', 'Title' => 'Akce'),
    4849                );
    4950                $Order = GetOrderTableHeader($TableColumns, 'TimeCreate', 1);
     
    5455                while($Export = $DbResult->fetch_assoc())
    5556                {
     57                        $Action = '<a href="'.$this->System->Link('/export/?Action=View&amp;ExportId='.$Export['Id'].'&amp;Tab=0').'">Zobrazit</a> '.
     58                        '<a href="'.$this->System->Link('/export/?Action=View&amp;ExportId='.$Export['Id'].'&amp;Tab=7').'">Exportovat</a>';
     59                        if($Export['User'] == $this->System->User->Id) $Action .= ' <a href="?Action=Delete&amp;ExportId='.$Export['Id'].'" onclick="return confirmAction(\'Opravdu smazat položku?\');">Smazat</a>';                           
    5660                        $Output .= '<tr><td>'.HumanDate($Export['TimeCreate']).'</td>'.
    5761                                '<td>'.$Export['Title'].'</td>'.
    5862                                '<td>'.$Export['OutputType'].'</td>'.
    5963                                '<td>'.$Export['ClientVersion'].'</td>'.
    60                                 '<td>'.$Export['UsedCount'].'</td>';
     64                                '<td>'.$Export['UsedCount'].'</td>'.
     65                          '<td>'.$Action.'</td></tr>';
    6166                }
    6267                $Output .= '</table>'.
Note: See TracChangeset for help on using the changeset viewer.