You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							731 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							731 B
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
 | 
						|
/**
 | 
						|
 *	This script displays a help window.
 | 
						|
 *
 | 
						|
 *	@package chamilo.help
 | 
						|
 */
 | 
						|
/**
 | 
						|
 * Code
 | 
						|
 */
 | 
						|
require_once '../inc/global.inc.php';
 | 
						|
$help_name = isset($_GET['open']) ? Security::remove_XSS($_GET['open']) : null;
 | 
						|
if (empty($help_name)) {
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
 | 
						|
?>
 | 
						|
<a class="btn btn-default" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php">
 | 
						|
    <?php echo get_lang('AccessToFaq'); ?>
 | 
						|
</a>
 | 
						|
<div class="page-header">
 | 
						|
    <h3><?php echo get_lang('H'.$help_name); ?></h3>
 | 
						|
</div>
 | 
						|
<?php echo get_lang($help_name.'Content'); ?>
 | 
						|
<hr>
 | 
						|
<a class="btn btn-default" href="<?php echo api_get_path(WEB_CODE_PATH); ?>help/faq.php">
 | 
						|
    <?php echo get_lang('AccessToFaq'); ?>
 | 
						|
</a>
 | 
						|
 |