index.php 388 B

12345678910111213
  1. <?php
  2. if (cfr('HELP')) {
  3. if (wf_CheckGet(array('chapter'))) {
  4. $chapter=$_GET['chapter'];
  5. $chapter_content=web_HelpChapterGet($chapter);
  6. show_window(__('Context help'), $chapter_content);
  7. show_window('', wf_Link('javascript: history.go(-1);', 'Back', false, 'ubButton'));
  8. }
  9. } else {
  10. show_error(__('You cant control this module'));
  11. }