/etc/tpf/tpf-2.17/lib/lib_twe_export_htm.php
520
521
522
523
524
525
526
527
528
529
530
if($this->fw->env_data_get('subcmd', '') == '')
{
$xsl = $this->fw->path_web.'xsl-bin/'.$xslPath;
if(file_exists($xsl)===false)
{
trigger_error('Cannot find XSL: '.$xsl, E_USER_ERROR);
}
$timingStartXsl = getmicrotime();
$xsldoc = new XSLTProcessor();
$xsldoc->importStyleSheet(DOMDocument::load($xsl));
//$xsldoc = domxml_xslt_stylesheet_file($xsl);
/etc/tpf/tpf-2.17/lib/lib_twe_export_htm.php
264
265
266
267
268
269
270
271
272
273
274
/** Vergleich ob publiziert worden ist */
$cache->add_test_file($this->fw->path_local_var.'publish');
if(($content = $cache->get())==false)
{
$content = $this->transform($withNav, $this->res[0]['XSL'], $this->navId, $this->navId2);
$cache->save($content);
}
break;
/** Alle 24 Stunden erneut Cachen */
/etc/tpf/tpf-2.17/lib/lib_twe_output.php
115
116
117
118
119
120
121
122
123
124
125
header('Content-Type: text/xml; charset=UTF-8');
}
else
{
header('Content-Type: text/html; charset=UTF-8');
$content = $export->get_htm(true, $this->fw->env_data_get('id', 1), $this->fw->env_data_get('id2', $this->fw->env_data_get('id')));
$content .= "\n<!-- database queries: ".$this->fw->db->dbCounter." -->";
}
return $content;
}
/etc/tpf/tpf-2.17/lib/lib_twe_output.php
47
48
49
50
51
52
53
54
55
56
57
* $id = seite
* $id2 = navigation
*/
function main()
{
$content = $this->main_get();
header('Content-Length: '.strlen($content));
echo $content;
}
/etc/tpf/tpf-2.17/twe.php
554
555
556
557
558
559
560
561
562
563
564
else
{
if(class_exists ($this->uappName) == true)
{
$class = new $this->uappName($this, &$this->page);
call_user_func(array($class, $this->env_data_get('cmd')));
}
else
{
trigger_error(sprintf(_('Keine Klasse %s definiert!'), $this->uappName), E_USER_ERROR);
}
/var/kunden/webs/lissym/webs/sfest.lissymoedl.de/php-bin/cms/twe/index.php
33
34
35
36
37
38
39
40
class lib_twe_output_local extends lib_twe_output
{
}
$fw->start(true);
?>