Lines Matching refs:data

82             $data = array();  variable
83 $data['id'] = sprintf('%u', crc32($dokuPageId . $hid));
84 $data['namespace'] = getCategories($dokuPageId);
85 $data['pagename'] = getPagename($dokuPageId);
86 $data['level'] = $section['level'];
87 $data['modified'] = $metadata['date']['modified'];
88 $data['title'] = strip_tags($section['title_text']);
89 $data['title_to_index'] = $section['title_to_index'];
90 …$data['body'] = $section['section']; //strip_tags(p_render('xhtml',p_get_instructions($section['se…
93 …$data['title_to_index'] = mb_convert_encoding($data['title_to_index'], "UTF-8", mb_detect_encoding…
94 …$data['body'] = mb_convert_encoding($data['body'], "UTF-8", mb_detect_encoding($data['body'], "aut…
96 echo formatXml($data) . "\n";
97 $pageMapper->add($dokuPageId, $data['title'], $section['title'], $hid);
100 $data = array(); variable
101 $data['id'] = sprintf('%u', crc32($dokuPageId));
102 $data['namespace'] = getCategories($dokuPageId);
103 $data['pagename'] = getPagename($dokuPageId);
104 $data['level'] = 1;
105 $data['modified'] = $metadata['date']['modified'];
106 $data['title'] = strip_tags($metadata['title']);
107 $data['title_to_index'] = $metadata['title'];
108 …$data['body'] = io_readFile(wikiFN($dokuPageId)); //strip_tags(p_wiki_xhtml($dokuPageId,$metadata[…
110 if (empty($data['body'])) {
115 …$data['title_to_index'] = mb_convert_encoding($data['title_to_index'], "UTF-8", mb_detect_encoding…
116 …$data['body'] = mb_convert_encoding($data['body'], "UTF-8", mb_detect_encoding($data['body'], "aut…
118 echo formatXml($data) . "\n";