Source for file allowed_html_tags.php
Documentation is available at allowed_html_tags.php
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004-2005 Dokeos S.A.
Copyright (c) Bart Mollet, Hogeschool Gent
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
==============================================================================
==============================================================================
* This script displays a help window with an overview of the allowed HTML-
* tags and their attributes.
==============================================================================
// name of the language file that needs to be included
include ('../inc/global.inc.php');
require_once (api_get_path(LIBRARY_PATH). 'formvalidator/FormValidator.class.php');
require_once (api_get_path(LIBRARY_PATH). 'formvalidator/Rule/HTML.php');
header('Content-Type: text/html; charset='. $charset);
<!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; ?>">
<meta http-equiv="Content-Type" content="text/html; charset= <?php echo $charset ?>" />
<?php echo get_lang('AllowedHTMLTags'); ?>
<style type="text/css" media="screen, projection">
<style type="text/css" media="screen, projection">
<div style="margin:10px;">
<div style="text-align:right;"><a href="javascript:window.close();"> <?php echo get_lang('Close'); ?></a></div>
<?php echo get_lang('AllowedHTMLTags'); ?>
$fullpage = $_GET['fullpage'] == '0' ? false : true;
$table_header[]= array('tag',true);
$table_header[]= array('attributes',false);
foreach ($tags as $tag => $attributes)
$row[] = '<kbd>'. $tag. '</kbd>';
<div style="text-align:right;"><a href="javascript:window.close();"> <?php echo get_lang('Close'); ?></a></div>
|