Lines Matching refs:toc
56 $tocarray = $Renderer->toc;
156 $toc = "<?xml version='1.0' encoding='utf-8'?>";
157 $toc .= '<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="eng">';
158 $toc .= '<head>';
159 $toc .= '<meta content="0c159d12-f5fe-4323-8194-f5c652b89f5c" name="dtb:uid"/>';
160 $toc .= '<meta content="2" name="dtb:depth"/>';
161 $toc .= '<meta content="calibre (0.8.68)" name="dtb:generator"/>';
162 $toc .= '<meta content="0" name="dtb:totalPageCount"/>';
163 $toc .= '<meta content="0" name="dtb:maxPageNumber"/>';
164 $toc .= '</head>';
165 $toc .= '<docTitle>';
166 $toc .= '<text>Titel</text>';
167 $toc .= '</docTitle>';
168 $toc .= '<navMap>';
170 $toc .= '<navPoint id="' . substr($tocarray[$i]["link"],1) . '" playOrder="' . $i . '">';
171 $toc .= '<navLabel><text>' . $tocarray[$i]["title"] . '</text>';
172 $toc .= '</navLabel><content src="pages.xhtml' . $tocarray[$i]["link"] . '"/>';
173 $toc .= '</navPoint>';
175 $toc .= '</navMap></ncx>';
176 file_put_contents($tempdir . "/toc.ncx",$toc);