Ignore:
Timestamp:
Jan 12, 2016, 10:55:07 PM (9 years ago)
Author:
chronos
Message:
  • Modified: Admin section transformed to application module.
Location:
trunk/Modules/Translation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/Translation.php

    r838 r842  
    3535      'Channel' => 'translation', 'Callback' => array($this, 'ShowRSS'), 'Permission' => LICENCE_ANONYMOUS));
    3636    $this->System->RegisterMenuItem(array(
    37         'Title' => T('Completion status'),
    38         'Hint' => 'Stav dokončení překládů',
    39         'Link' => $this->System->Link('/progress/'),
    40         'Permission' => LICENCE_ANONYMOUS,
    41         'Icon' => '',
     37      'Title' => T('Completion status'),
     38      'Hint' => 'Stav dokončení překládů',
     39      'Link' => $this->System->Link('/progress/'),
     40      'Permission' => LICENCE_ANONYMOUS,
     41      'Icon' => '',
    4242    ), 1);
     43    $this->System->RegisterMenuItem(array(
     44      'Title' => T('Data source'),
     45      'Hint' => 'Informace o překladových skupinách',
     46      'Link' => $this->System->Link('/TranslationList.php?action=grouplist'),
     47      'Permission' => LICENCE_ANONYMOUS,
     48      'Icon' => '',
     49    ));
    4350    if(array_key_exists('Search', $this->System->ModuleManager->Modules))
    4451    {
  • trunk/Modules/Translation/TranslationList.php

    r837 r842  
    359359      $Output .= '</td>';
    360360      if($this->System->User->Licence(LICENCE_ADMIN))
    361         $Output .= '<td><a title="Změny po posledním importu u vybrané překladové skupiny" href="log.php?group='.
    362           $Group['Id'].'&amp;type=11">'.HumanDate($Group['LastImport']).'</a></td>';
     361        $Output .= '<td><a title="Změny po posledním importu u vybrané překladové skupiny" href="'.$this->System->Link('/log/?group='.
     362          $Group['Id'].'&amp;type=11').'">'.HumanDate($Group['LastImport']).'</a></td>';
    363363        else $Output .= '<td>'.HumanDate($Group['LastImport']).'</td>';
    364364      $Output .= '<td><a href="'.$this->System->Link('/client-version/?action=item&amp;id='.
     
    370370    }
    371371    $Output .= '</table>'.
    372         '<br /><a title="'.T('Changelog of changes after import').'" href="log.php?type=11">'.T('Changelog of text modification during import').'</a><br/>';
     372        '<br /><a title="'.T('Changelog of changes after import').'" href="'.$this->System->Link('/log/?type=11').'">'.T('Changelog of text modification during import').'</a><br/>';
    373373    if($this->System->User->Licence(LICENCE_ADMIN)) $Output .= '<a href="?action=groupadd">'.T('Add translation group').'</a>';
    374374    return($Output);
Note: See TracChangeset for help on using the changeset viewer.