XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
config.php
Go to the documentation of this file.
1 <?php
20 defined('XOOPS_ROOT_PATH') or die('Restricted access');
21 
22 return $config = array(
23  "extensions" => array(
24  "iframe" => 0,
25  "image" => 1,
26  "flash" => 1,
27  "youtube" => 1,
28  "mp3" => 0,
29  "wmp" => 0,
30  // If other module is used, please modify the following detection and 'link' in /wiki/config.php
31  "wiki" => is_dir(XOOPS_ROOT_PATH . '/modules/mediawiki/'),
32  "mms" => 0,
33  "rtsp" => 0,
34  "ul" => 1,
35  "li" => 1),
36 
37  "truncate_length" => 60,
38 
39  // Filters XSS scripts on display of text
40  // There is considerable trade-off between security and performance
41  "filterxss_on_display" => false);
42 ?>