ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
fetch.tpl.php
Go to the documentation of this file.
1<?php
2$this->data['header'] = $this->t('{metarefresh:metarefresh:metarefresh_header}');
3$this->includeAtTemplateBase('includes/header.php');
4
5echo('<h1>'.$this->data['header'].'</h1>');
6
7
8if (!empty($this->data['logentries'])) {
9
10 echo '<pre style="border: 1px solid #aaa; padding: .5em; overflow: scroll">';
11 foreach($this->data['logentries'] AS $l) {
12 echo $l . "\n";
13 }
14 echo '</pre>';
15
16} else {
17 echo $this->t('{metarefresh:metarefresh:no_output}');
18}
19
20
21
22$this->includeAtTemplateBase('includes/footer.php');
global $l
Definition: afr.php:30
An exception for terminatinating execution or to throw for unit testing.
$this data['header']
Definition: fetch.tpl.php:2