Changeset 584 for trunk/Modules/Translation/Translation.php
- Timestamp:
- Sep 13, 2013, 8:58:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/Translation.php
r581 r584 5 5 include_once(dirname(__FILE__).'/Save.php'); 6 6 include_once(dirname(__FILE__).'/TranslationList.php'); 7 include_once(dirname(__FILE__).'/Progress.php'); 7 8 8 9 class ModuleTranslation extends AppModule … … 24 25 $this->System->RegisterPage('form.php', 'PageTranslationForm'); 25 26 $this->System->RegisterPage('save.php', 'PageTranslationSave'); 27 $this->System->RegisterPage('progress', 'PageProgress'); 26 28 $this->System->RegisterPage('TranslationList.php', 'PageTranslationList'); 27 29 $this->System->ModuleManager->Modules['News']->RegisterRSS(array('Title' => 'Poslední překlady', 28 30 'Channel' => 'translation', 'Callback' => array($this, 'ShowRSS'), 'Permission' => LICENCE_ANONYMOUS)); 31 $this->System->RegisterMenuItem(array( 32 'Title' => 'Stav dokončení', 33 'Hint' => 'Stav dokončení překládů', 34 'Link' => $this->System->Link('/progress/'), 35 'Permission' => LICENCE_ANONYMOUS, 36 'Icon' => '', 37 ), 1); 29 38 } 30 39
Note:
See TracChangeset
for help on using the changeset viewer.