mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 05:23:13 +01:00
22 lines
498 B
PHP
22 lines
498 B
PHP
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* Template for testing token assignment.
|
||
|
*
|
||
|
* @version $Id$
|
||
|
*
|
||
|
*/
|
||
|
?>
|
||
|
<p><?php echo $this->variable1 ?></p>
|
||
|
<p><?php echo $this->variable2 ?></p>
|
||
|
<p><?php echo $this->variable3 ?></p>
|
||
|
<p><?php echo $this->key0 ?></p>
|
||
|
<p><?php echo $this->key1 ?></p>
|
||
|
<p><?php echo $this->key2 ?></p>
|
||
|
<p><?php echo $this->reference1 ?></p>
|
||
|
<p><?php echo $this->reference2 ?></p>
|
||
|
<p><?php echo $this->reference3 ?></p>
|
||
|
<ul>
|
||
|
<?php foreach ($this->set as $key => $val) echo "<li>$key = $val</li>\n" ?>
|
||
|
</ul>
|