123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /*
- ==============================================================================
- Dokeos - elearning and course management software
- Copyright (c) 2004-2005 Dokeos S.A.
- Copyright (c) 2003-2005 Ghent University (UGent)
- Copyright (c) 2001 Universite catholique de Louvain (UCL)
- Copyright (c) Sally "Example" Programmer (sally@somewhere.net)
- For a full list of contributors, see "credits.txt".
- The full license can be read in "license.txt".
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- See the GNU General Public License for more details.
- Contact address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium
- Mail: info@dokeos.com
- ==============================================================================
- */
- /**
- ==============================================================================
- * This script displays a help window.
- *
- * @package dokeos.help
- ==============================================================================
- */
- // name of the language file that needs to be included
- $language_file='help';
- $helpName=$_GET['open'];
- include('../inc/global.inc.php');
- $language_code = Database::get_language_isocode($language_interface);
- header('Content-Type: text/html; charset='. $charset);
- /*
- * Choose CSS style platform's, user's, course's, or Learning path CSS
- */
-
- $platform_theme = api_get_setting('stylesheets'); // plataform's css
- $my_style=$platform_theme;
- if(api_get_setting('user_selected_theme') == 'true')
- {
- $useri = api_get_user_info();
- $user_theme = $useri['theme'];
- if(!empty($user_theme) && $user_theme != $my_style)
- {
- $my_style = $user_theme; // user's css
- }
- }
- $mycourseid = api_get_course_id();
- if (!empty($mycourseid) && $mycourseid != -1)
- {
- if (api_get_setting('allow_course_theme') == 'true')
- {
- $mycoursetheme=api_get_course_setting('course_theme');
- if (!empty($mycoursetheme) && $mycoursetheme!=-1)
- {
- if(!empty($mycoursetheme) && $mycoursetheme != $my_style)
- {
- $my_style = $mycoursetheme; // course's css
- }
- }
-
- $mycourselptheme=api_get_course_setting('allow_learning_path_theme');
- if (!empty($mycourselptheme) && $mycourselptheme!=-1 && $mycourselptheme== 1)
- {
- global $lp_theme_css; // it comes from the lp_controller.php
- global $lp_theme_config; // it comes from the lp_controller.php
-
- if (!empty($lp_theme_css))
- {
- $theme=$lp_theme_css;
- if(!empty($theme) && $theme != $my_style)
- {
- $my_style = $theme; // LP's css
- }
- }
-
- }
- }
- }
- if ($lp_theme_log){
- $my_style=$platform_theme;
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $language_code; ?>" lang="<?php echo $language_code; ?>">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset ?>" />
- <title>
- <?php echo get_lang('H'.$helpName); ?>
- </title>
- <?php
- if(api_get_setting('stylesheets')<>'')
- {
- ?>
- <style type="text/css" media="screen, projection">
- /*<![CDATA[*/
- @import "<?php echo api_get_path(WEB_CODE_PATH); ?>css/<?php echo $my_style;?>/default.css";
- /*]]>*/
- </style>
- <?php
- }
- ?>
- </head>
- <body>
- <div style="margin:10px;">
- <div style="text-align:right;"><a href="javascript:window.close();"><?php echo get_lang('Close'); ?></a></div>
- <a href="faq.php"><?php echo get_lang('AccessToFaq') ?></a>
- <h4>
- <?php echo get_lang('H'.$helpName); ?>
- </h4>
- <?php echo get_lang($helpName.'Content'); ?>
- <br /><br />
- <a href="faq.php"><?php echo get_lang('AccessToFaq') ?></a>
- <div style="text-align:right;"><a href="javascript:window.close();"><?php echo get_lang('Close'); ?></a></div>
- </div>
- </body>
- </html>
|