c7998508cfe47ba22df22b360b51ddccc2b62d9c
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / nodes.inc
1 <?php
2 require_once(INCLUDE_DIR.'base36.inc');
3
4 if (!function_exists('str_split')){
5 function str_split($string, $split_length=1){
6
7 if ($split_length < 1){
8 return false;
9 }
10
11 for ($pos=0, $chunks = array(); $pos < strlen($string); $pos+=$split_length){
12 $chunks[] = substr($string, $pos, $split_length);
13 }
14 return $chunks;
15 }
16 }
17
18
19
20 function processContent_hack($node_content) {
21 global $node;
22 include_once(INCLUDE_DIR.'htmlparse.inc');
23
24 if ($node['template_id']==$node['node_id'] && $_POST['event']=='configure_content') {
25
26 }
27
28 elseif ($_POST['no_html']) {
29 $node_content=htmlspecialchars($node_content);
30 }
31
32 elseif ($_POST['wiki']) {
33 // load the class file
34 require_once 'Text/Wiki.php';
35
36 // instantiate a Text_Wiki object with the default rule set
37 $wiki = new Text_Wiki();
38
39 $node_content = $wiki->transform($node_content, 'Xhtml');
40 }
41
42 elseif ($_POST['code']) {}
43
44 else {
45 global $db,$htmlparse,$error;
46
47 if (!htmlparser::htmlparse($node_content)) {
48 $error=$htmlparse;
49 return false;
50 }
51
52 $node_content = eregi_Replace("((( )|(\n)|(^))+)(http://|ftp://|https://)([[:alnum:]][^,[:space:]]*)","\\2<a target='_blank' href=\"\\6\\7\">\\6\\7</a>",$node_content);
53 //$node_content = mysql_real_escape_string($node_content); once is enough
54 }
55
56 return $node_content;
57 }
58
59
60 require_once(BACKEND_DIR.'/'.DB_TYPE.'/backend.inc');
61
This page took 0.261057 seconds and 3 git commands to generate.