egroupware/phpgwapi/inc/savant2/Savant2/tests/2_display.php

72 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
*
* Tests display() issues
*
* @version $Id$
*
*/
error_reporting(E_ALL);
require_once 'Savant2.php';
$conf = array(
'template_path' => 'templates',
'resource_path' => 'resources'
);
$savant =& new Savant2($conf);
$array = array(
'key0' => 'val0',
'key1' => 'val1',
'key2' => 'val2',
);
$var1 = 'variable1';
$var2 = 'variable2';
$var3 = 'variable3';
$ref1 = 'reference1';
$ref2 = 'reference2';
$ref3 = 'reference3';
// assign vars
$savant->assign($var1, $var1);
$savant->assign($var2, $var2);
$savant->assign($var3, $var3);
// assigns $array to a variable $set
$savant->assign('set', $array);
// assigns the keys and values of array
$savant->assign($array);
// assign references
$savant->assignRef($ref1, $ref1);
$savant->assignRef($ref2, $ref2);
$savant->assignRef($ref3, $ref3);
echo "<h1>Display non-existent template</h1>";
$result = $savant->display('no_such_template.tpl.php');
echo "result: <pre>";
print_r($result);
echo "</pre>";
echo "<h1>Storage</h1>";
echo "properties: <pre>";
print_r(get_object_vars($savant));
echo "</pre>";
echo "<h1>Display existing template</h1>";
$result = $savant->display('test.tpl.php');
echo "result: <pre>";
var_dump($result);
echo "</pre>";
?>