ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
croninfo.tpl.php
Go to the documentation of this file.
1 <?php
2 
3 $this->data['header'] = $this->t('cron_header');
4 $this->includeAtTemplateBase('includes/header.php');
5 
6 $run_text = $this->t('run_text');
7 ?>
8 
9  <p><?php echo $this->t('cron_info') ?></p>
10 
11  <p><?php echo $this->t('cron_suggestion') ?></p>
12  <pre style="font-size: x-small; color: #444; padding: 1em; border: 1px solid #eee; margin: .4em "><code><?php
13 
14  foreach ($this->data['urls'] AS $url ) {
15  echo "# " . $run_text. ' [' .$url['tag']. ']' . "\n";
16  echo "" . $url['int'] . " curl --silent \"" . $url['href'] . "\" > /dev/null 2>&1\n";
17  }
18 
19  ?>
20  </code></pre>
21 
22  <br><p><?php echo $this->t('cron_execution') ?></p>
23  <ul>
24  <?php
25 
26  foreach ($this->data['urls'] AS $url ) {
27  echo '<li><a href="' . $url['href'] . '&amp;output=xhtml">' . $run_text. ' [' .$url['tag']. ']' . '</a></li>';
28  }
29 
30  ?>
31 
32  </ul>
33 
34 </div>
35 
36 <?php
37 $this->includeAtTemplateBase('includes/footer.php');
"color:#CC0000 style
Definition: example_001.php:92
$run_text
Definition: croninfo.tpl.php:6
$url
$this data['header']
Definition: croninfo.tpl.php:3